The LLVM compiler is the next-generation compiler introduced in Xcode 3.2 for Snow Leopard based on the open source LLVM.org project.

Posts under LLVM tag

172 Posts

Post

Replies

Boosts

Views

Activity

Optimization bug in Apple clang version 14.0.0
Source code: #include <cstdio> static const char encodeBase64Table[64 + 1] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; int main() { // create decoding table unsigned long invalid = 64; unsigned long decodeBase64Table[256] = {}; for (unsigned long i = 0; i < 256; i++) decodeBase64Table[i] = invalid; for (unsigned long i = 0; i < 64; i++) { decodeBase64Table[(unsigned char)encodeBase64Table[i]] = i; } printf("decodeBase64Table[65] = %lu\n", decodeBase64Table[65]); return 0; } Apple Clang 11.0.3 (expected output, even with -O3): /t/s/1673994196 ❯❯❯ /usr/bin/clang++ --version Apple clang version 11.0.3 (clang-1103.0.32.62) Target: x86_64-apple-darwin21.6.0 Thread model: posix InstalledDir: /Library/Developer/CommandLineTools/usr/bin /t/s/1673994196 ❯❯❯ /usr/bin/clang++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -O3 a.cpp /t/s/1673994196 ❯❯❯ ./a.out decodeBase64Table[65] = 0 Apple Clang 14.0.0 (unexpected output, only with -O3): /t/s/1673994196 ❯❯❯ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ --version Apple clang version 14.0.0 (clang-1400.0.29.202) Target: x86_64-apple-darwin21.6.0 Thread model: posix InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin /t/s/1673994196 ❯❯❯ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -O3 a.cpp /t/s/1673994196 ❯❯❯ ./a.out decodeBase64Table[65] = 64 This problem is reproducible on x86_64 and arm64
2
0
1.6k
Jan ’23
Why does ld64 require DWARF personality symbols to be extern?
The linker seems to require my exception handling personality symbol to have external visibility. This is a problem because the symbol being visible can cause consumers of my static library to run into link failures due to name collision. I would like the symbol to be local. To see what I mean, create test.s: ; ld64 fails to link unless the following line is uncommented: ; .private_extern _my_personality ; ; lld version 15 links successfully either way. .align 4 _my_personality: ret .global _fun .align 4 _fun: .cfi_startproc ; 0x9b = DW_EH_PE_pcrel | DW_EH_PE_indirect | DW_EH_PE_sdata4 .cfi_personality 0x9b, _my_personality ; This encodes DW_CFA_GNU_args_size, which compact unwind can't encode. ; Also repros with .cfi_escape 0 .cfi_escape 0x2e, 0x10 ret .cfi_endproc Then run as test.s -o test.o && clang -shared test.o. This is the error I get: Undefined symbols for architecture arm64: "_my_personality", referenced from: Dwarf Exception Unwind Info (__eh_frame) in cat.o ld: symbol(s) not found for architecture arm64 clang: error: linker command failed with exit code 1 (use -v to see invocation) I'm posting test.s just so there is a self-contained test case. In practice this is for Ruby and the personality function is _rust_eh_personality. LLVM's LLD (version 15) links fine when the symbol is local, but I can't force users to use LLD. It would be nice if ld64 can allow linking when the symbol is local. I'm using XCode 14. So ld64-820.1 and clang-1400.0.29.202.
0
0
1k
Jan ’23
Structured binding together with OpenMP not compiling
Hi all, I came across a strange compiler error that occurs when I use structured binding in combination with an OpenMP parallel region. A minimal example code is as follows: #include <tuple> #ifdef OPENMMP_ #include <omp.h> #endif auto create() {   int    a = 10;   double b = 1.0;   return std::tie(a,b); } int main() {   auto [a, b] = create();   double vector[100]; #pragma omp parallel for   for (int i=0; i<a; ++i)     vector[i] = b; } I am using Apple clang version: Apple clang version 14.0.0 (clang-1400.0.29.202) Target: arm64-apple-darwin22.2.0 Thread model: posix InstalledDir: /Library/Developer/CommandLineTools/usr/bin When compiled with g++ -std=c++17 test.cxx I get no the compiler error and the executable works. When compiled with g++ -Xclang -fopenmp -std=c++17 test.cxx I get the compiler error: test.cxx:22:19: error: reference to local binding 'a' declared in enclosing function 'main'   for (int i=0; i<a; ++i)                   ^ test.cxx:17:9: note: 'a' declared here   auto [a, b] = create();         ^ test.cxx:23:17: error: reference to local binding 'b' declared in enclosing function 'main'     vector[i] = b;                 ^ test.cxx:17:12: note: 'b' declared here   auto [a, b] = create();            ^ 2 errors generated. This error does not occur when I compile the code with g++-12 from the Homebrew project. Any help is appreciated.
0
0
952
Jan ’23
error: arithmetic on a pointer to an incomplete type 'Xstring'
Hi there, since upgrading to the latest Xcode and Command Line Tools, I get the follwoing error when compiling: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/wrap_iter.h:133:13: error: arithmetic on a pointer to an incomplete type 'Xstring' __i += __n; ~~~ ^ Does anyone has an idea, how to overcome this , is there a compiler flag which I am missing ? Thanks a lot Best Hannes. PS: here is the full compilation and error: g++ -DPACKAGE_NAME="xfitter" -DPACKAGE_TARNAME="xfitter" -DPACKAGE_VERSION="VERSION_NUMBER" -DPACKAGE_STRING="xfitter\ VERSION_NUMBER" -DPACKAGE_BUGREPORT="" -DPACKAGE_URL="" -DPACKAGE="xfitter" -DVERSION="VERSION_NUMBER" -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=".libs/" -DFC_FUNC(name,NAME)=name\ ##\ _ -DFC_FUNC_(name,NAME)=name\ ##\ _ -DF77_FUNC(name,NAME)=name\ ##\ _ -DF77_FUNC_(name,NAME)=name\ ##\ _ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DLHAPDF_ENABLED=1 -DLHAPDF_FAMILY=6 -DROOT_ENABLED=1 -I. -fPIC -I./linalg -fPIC -Wno-deprecated -stdlib=libc++ -pthread -std=c++17 -m64 -I/opt/homebrew/Cellar/root/6.26.06_2/include/root -w -g -O2 -std=c++17 -lstdc++ -MT FitPars_base.o -MD -MP -MF .deps/FitPars_base.Tpo -c -o FitPars_base.o FitPars_base.cc In file included from FitPars_base.cc:10: In file included from ./FitPars_base.h:10: In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/map:495: In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__node_handle:15: In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/memory:681: In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/raw_storage_iterator.h:16: In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/iterator:609: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/wrap_iter.h:133:13: error: arithmetic on a pointer to an incomplete type 'Xstring' __i += __n; ~~~ ^ /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/wrap_iter.h:126:38: note: in instantiation of member function 'std::__wrap_iter&amp;lt;Xstring *&amp;gt;::operator+=' requested here {__wrap_iter __w(*this); __w += __n; return __w;} ^ ./Xstring.h:40:32: note: in instantiation of member function 'std::__wrap_iter&amp;lt;Xstring *&amp;gt;::operator+' requested here A.erase(A.begin(),A.begin()+start); ^ ./Xstring.h:27:7: note: forward declaration of 'Xstring' class Xstring; ^ 1 error generated.
1
0
1.6k
Dec ’22
llvm-symbolizer not found in Xcode
after install XCode, llvm-dwarfdump llvm-objdump .. these can be found under "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/" but llvm-symbolizer is not FOUND. Should I install llvm by myself if I need llvm-symbolizer ? brew install llvm Error: llvm: the bottle needs the Apple Command Line Tools to be installed.  You can install them, if desired, with:   xcode-select --install If you're feeling brave, you can try to install from source with:  brew install --build-from-source llvm
0
2
1.7k
Dec ’22
What is `fma.shff`?
I'm trying to optimize code for the M1 GPU family (Apple 7 variants where F32 compute power equals F16 compute power). xcrun metal-opt mentions a compile option called -fma-shff-hoist-depth-agx2=<uint>. There's something called fma.shff. I'd like to know what the "SHFF" acronym stands for. Shuffle? Shift? Perhaps it's related to SIMD-group reductions.
0
0
967
Dec ’22
libc++ woes with Xcode 14
We are writing server-side C++ code that runs on Linux in production but some of the developers use Macs. We standardized on Clang 14 (or the equivalent Apple Clang) and libc++ as the runtime library. The dev environment is either VSCode or CLion. I have clang 14 installed via Xcode, and even though it also installed libc++ 14, it chooses to use libc++ 13 instead (from a different directory). % printf "#include <version>\nint main(){}" | /usr/bin/clang++ -std=c++20 -stdlib=libc++ -E -x c++ -dM - | grep _LIBCPP_VERSION #define _LIBCPP_VERSION 13000 Some investigation (grep output trimmed: % grep -R -H "#define _LIBCPP_VERSION" --include=__config --exclude-dir=System / 2>/dev/null /Library/Developer/CommandLineTools/usr/include/c++/v1/__config:#define _LIBCPP_VERSION 14000 /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/__config:#define _LIBCPP_VERSION 13000 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/__config:#define _LIBCPP_VERSION 14000 So 14.0 is installed, but the directory with 13.0 is selected: % printf "#include <__config>\nint main(){}" | /usr/bin/clang++ -std=c++20 -stdlib=libc++ -E -x c++ - | grep "2 3" # 14 "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/__config" 2 3 Let's see what else clang has to say: % /usr/bin/clang++ -v Apple clang version 14.0.0 (clang-1400.0.29.102) Target: arm64-apple-darwin21.6.0 Thread model: posix InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin % clang++ -print-search-dirs programs: =/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin libraries: =/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.0 So for some reason, clang takes the libraries from one directory, but the standard headers from another. I could try using -nostdlibinc and specifying the "correct" include directory explicitly, but I am not sure what the side effects will be and I'd rather understand what's going on.
2
0
2.3k
Dec ’22
Xcode 14 project compile error ... com.apple.xcode.tools.swift.compiler is not absolute
I am using a static linked c library in my project. There was no error in Xcode 13 but I am starting to get error below after upgraded to Xcode 14. This error doesn't seem to stop build from completing successfully. Dependency for P1:target-SwiftSMB-f940fa9bfd7461b6bfd7a1821b88923283a44e681aeb1f425a9cef51a7a8aacb-:Debug:SwiftDriver Compilation Requirements SwiftSMB normal x86_64 com.apple.xcode.tools.swift.compiler is not absolute (libsmb2/include/smb2/smb2.h). ... Showing All Errors Only Command SwiftDriver Compilation Requirements emitted errors but did not return a nonzero exit code to indicate failure
18
13
20k
Nov ’22
Apple Swift version 5.7 not working on Apple Swift version 5.6.1
We have built a binary framework created with Xcode 14.1 using Xcode 13.4.1 getting below error. BUILD_LIBRARY_FOR_DISTRIBUTION ENABLED TRUE. this SDK is not supported by the compiler (the SDK is built with 'Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51)', while this compiler is 'Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12)'). Please select a toolchain that matches the SDK.
2
0
5.6k
Nov ’22
C++ std::ranges algorithms
clang has supported std::ranges algorithms since clang 12, but this support is not available in Clang 14.0.0 arm64-apple-darwin22.1.0. Does Apple ever intend to support this, or do I have to switch to compiling using gcc to get these algorithms?
0
1
1.3k
Nov ’22
Segmentation fault: 11
I have recent move to new xcode from 10.1 to 11.2 but i am getting error ofSegmentation fault: 11project is running fine in xcode 10.1.error logs are below ::CompileSwift normal x86_64 /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/LaunchingAndLoginRegister/VerificationViewController.swift (in target 'Intranet_innoways_dev' from project 'Intranet') cd /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet /Applications/Xcode112.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -c -filelist /var/folders/0p/1mcy65n125164bx5wwt7btw80000gp/T/sources-e72541 -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/LaunchingAndLoginRegister/VerificationViewController.swift -emit-module-path /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/VerificationViewController\~partial.swiftmodule -emit-module-doc-path /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/VerificationViewController\~partial.swiftdoc -serialize-diagnostics-path /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/VerificationViewController.dia -emit-dependencies-path /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/VerificationViewController.d -emit-reference-dependencies-path /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/VerificationViewController.swiftdeps -target x86_64-apple-ios12.1-simulator -enable-objc-interop -sdk /Applications/Xcode112.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk -I /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Alamofire -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/CLTokenInputView -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/CYLTableViewPlaceHolder -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Eureka -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/IQKeyboardManager -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Kingfisher -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Localize-Swift -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/MJRefresh -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Moya -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Moya-ObjectMapper -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/ObjectMapper -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Result -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SVProgressHUD -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SnapKit -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SwiftyJSON -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SwipyCell -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/TZImagePickerController -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/netfox -enable-testing -g -module-cache-path /Users/IOSDev/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 4.2 -enforce-exclusivity=checked -Onone -D Intranet_innoways_dev -D COCOAPODS -serialize-debugging-options -Xcc -working-directory -Xcc /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet -enable-anonymous-context-mangled-names -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Intranet_innoways_dev-generated-files.hmap -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Intranet_innoways_dev-own-target-headers.hmap -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Intranet_innoways_dev-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Intranet_innoways_dev-project-headers.hmap -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/include -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/CLTokenInputView/CLTokenInputView.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/CYLTableViewPlaceHolder/CYLTableViewPlaceHolder.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Eureka/Eureka.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/IQKeyboardManager/IQKeyboardManager.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Kingfisher/Kingfisher.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Localize-Swift/Localize_Swift.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/MJRefresh/MJRefresh.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Moya-ObjectMapper/Moya_ObjectMapper.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Moya/Moya.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/ObjectMapper/ObjectMapper.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Result/Result.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SVProgressHUD/SVProgressHUD.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SnapKit/SnapKit.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SwipyCell/SwipyCell.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/TZImagePickerController/TZImagePickerController.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/netfox/netfox.framework/Headers -Xcc -I/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Pods/Headers/Public -Xcc -I/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Pods/Headers/Public/TestFairy -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/DerivedSources-normal/x86_64 -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/DerivedSources/x86_64 -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/DerivedSources -Xcc -DDEBUG=1 -Xcc -DCOCOAPODS=1 -import-objc-header /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Intranet-Bridging-Header.h -pch-output-dir /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/PrecompiledHeaders -pch-disable-validation -module-name Intranet_innoways_dev -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/VerificationViewController.o -index-store-path /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Index/DataStore -index-system-modules/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:444:25: warning: enum element with associated values must have at least one associated value; this will be an error in the future version of Swift case PayTypeOTMethod() ^~/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:444:25: note: did you mean to remove the empty associated value list? case PayTypeOTMethod() ^ /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:444:25: note: did you mean to explicitly add a 'Void' associated value? case PayTypeOTMethod() ^ Void/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:445:28: warning: enum element with associated values must have at least one associated value; this will be an error in the future version of Swift case PayTypeLeaveMethod() ^~/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:445:28: note: did you mean to remove the empty associated value list? case PayTypeLeaveMethod() ^ /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:445:28: note: did you mean to explicitly add a 'Void' associated value? case PayTypeLeaveMethod() ^ Void/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:446:27: warning: enum element with associated values must have at least one associated value; this will be an error in the future version of Swift case ProjectCodeMethod() ^~/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:446:27: note: did you mean to remove the empty associated value list? case ProjectCodeMethod() ^ /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:446:27: note: did you mean to explicitly add a 'Void' associated value? case ProjectCodeMethod() ^ Void/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:447:22: warning: enum element with associated values must have at least one associated value; this will be an error in the future version of Swift case RemarkMethod() ^~/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:447:22: note: did you mean to remove the empty associated value list? case RemarkMethod() ^ /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:447:22: note: did you mean to explicitly add a 'Void' associated value? case RemarkMethod() ^ Void/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:448:21: warning: enum element with associated values must have at least one associated value; this will be an error in the future version of Swift case LeaveMethod() ^~/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:448:21: note: did you mean to remove the empty associated value list? case LeaveMethod() ^ /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:448:21: note: did you mean to explicitly add a 'Void' associated value? case LeaveMethod() ^ Void/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:449:29: warning: enum element with associated values must have at least one associated value; this will be an error in the future version of Swift case PettyCategoryMethod() ^~/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:449:29: note: did you mean to remove the empty associated value list? case PettyCategoryMethod() ^ /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:449:29: note: did you mean to explicitly add a 'Void' associated value? case PettyCategoryMethod() ^ Void/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:450:29: warning: enum element with associated values must have at least one associated value; this will be an error in the future version of Swift case PettyCurrencyMethod() ^~/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:450:29: note: did you mean to remove the empty associated value list? case PettyCurrencyMethod() ^ /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:450:29: note: did you mean to explicitly add a 'Void' associated value? case PettyCurrencyMethod() ^ Void/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:451:30: warning: enum element with associated values must have at least one associated value; this will be an error in the future version of Swift case PettyTransportMethod() ^~/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:451:30: note: did you mean to remove the empty associated value list? case PettyTransportMethod() ^ /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:451:30: note: did you mean to explicitly add a 'Void' associated value? case PettyTransportMethod() ^ Void/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/DateCustomCell/FromDateContentRow.swift:151:56: warning: immutable value 'index' was never used; consider replacing with '_' or removing it if let selectedValue = listRow?.value, let index = listRow?.options.index(of: selectedValue) { ^~~~~ _/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/PettyCashClaims/Controllers/PrettyCashClaimsDetailController.swift:152:39: warning: result of call to 'makeController()' is unused row.presentationMode?.makeController() ^ ~~/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/PettyCashClaims/Controllers/PrettyCashClaimsDetailController.swift:227:32: warning: immutable value 'avatar' was never used; consider replacing with '_' or removing it if let avatar = user.ref_code, let url = URL(string: user.ref_code) { ^~~~~~ _/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/PettyCashClaims/Controllers/PrettyCashClaimsDetailController.swift:227:60: warning: immutable value 'url' was never used; consider replacing with '_' or removing it if let avatar = user.ref_code, let url = URL(string: user.ref_code) { ^~~ _/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/PettyCashClaims/Controllers/PrettyCashClaimsDetailController.swift:446:32: warning: immutable value 'avatar' was never used; consider replacing with '_' or removing it if let avatar = user.ref_code, let url = URL(string: user.ref_code) { ^~~~~~ _/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/PettyCashClaims/Controllers/PrettyCashClaimsDetailController.swift:446:60: warning: immutable value 'url' was never used; consider replacing with '_' or removing it if let avatar = user.ref_code, let url = URL(string: user.ref_code) { ^~~ _/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/PettyCashClaims/Controllers/PrettyCashClaimsDetailController.swift:808:17: warning: immutable value 'refRow' was never used; consider replacing with '_' or removing it let refRow:BaseRow = TextRow("Ref"){row in ^~~~~~ _/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/PettyCashClaims/Controllers/PrettyCashClaimsDetailController.swift:812:17: warning: immutable value 'nameRow' was never used; consider replacing with '_' or removing it let nameRow:BaseRow = TextRow("Name"){ row in ^~~~~~~ _/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/PettyCashClaims/Controllers/PrettyCashClaimsDetailController.swift:818:17: warning: immutable value 'statusRow' was never used; consider replacing with '_' or removing it let statusRow:BaseRow = TextRow("Status"){ row in ^~~~~~~~~ _/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/TravellingClaims/Models/JobNo.swift:20:9: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'JobNo' to 'Hashable' by implementing 'hash(into:)' instead var hashValue: Int { ^/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Comm/AppUpdateManger.swift:26:13: warning: initialization of immutable value 'tool' was never used; consider replacing with assignment to '_' or removing it let tool = APIAlamofire() ~~~~^~~~ _Stack dump:0. Program arguments: /Applications/Xcode112.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -c -filelist /var/folders/0p/1mcy65n125164bx5wwt7btw80000gp/T/sources-e72541 -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/LaunchingAndLoginRegister/VerificationViewController.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/Service/Login.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/NoticeDetailViewController.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/DateCustomCell/FromDateContentRow.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Model/DataSource.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/BaseFormViewController.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/View/HeaderViewReusableView.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/PettyCashClaims/Controllers/PrettyCashClaimsDetailController.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Tools/UIImageExtension.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Comm/AppUpdateManger.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/TableInline/TableRow.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/search/Cell/FilterFotterCollectionReusableView.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/TableInline/TableInlineRow.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/search/SearchHeader.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/FileCustomCell/CustomBtnRow.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Tools/TimeZone/DateTools.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/AppDelegate.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/JobNumberCell/CollectionViewJobNumberCell.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/search/FilterSearchView.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/FileCustomCell/ICloudManager/ICloudDocumentModel.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/JobNoCell/JobNoCell.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/PettyCashClaims/Controllers/PrettyCashClaimsViewController.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/TravellingClaims/Models/JobNo.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/FileCustomCell/Media/UDatePicker.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/TravellingClaims/Views/TravellingClaimsTableViewCell.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/View/BaseTabbarButton.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/LaunchingAndLoginRegister/ScrollViewPageView/SecondPageView.swift -supplementary-output-file-map /var/folders/0p/1mcy65n125164bx5wwt7btw80000gp/T/supplementaryOutputs-fbb860 -target x86_64-apple-ios12.1-simulator -enable-objc-interop -sdk /Applications/Xcode112.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk -I /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Alamofire -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/CLTokenInputView -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/CYLTableViewPlaceHolder -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Eureka -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/IQKeyboardManager -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Kingfisher -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Localize-Swift -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/MJRefresh -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Moya -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Moya-ObjectMapper -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/ObjectMapper -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Result -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SVProgressHUD -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SnapKit -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SwiftyJSON -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SwipyCell -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/TZImagePickerController -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/netfox -enable-testing -g -module-cache-path /Users/IOSDev/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 4.2 -enforce-exclusivity=checked -Onone -D Intranet_innoways_dev -D COCOAPODS -serialize-debugging-options -Xcc -working-directory -Xcc /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet -enable-anonymous-context-mangled-names -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Intranet_innoways_dev-generated-files.hmap -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Intranet_innoways_dev-own-target-headers.hmap -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Intranet_innoways_dev-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Intranet_innoways_dev-project-headers.hmap -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/include -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/CLTokenInputView/CLTokenInputView.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/CYLTableViewPlaceHolder/CYLTableViewPlaceHolder.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Eureka/Eureka.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/IQKeyboardManager/IQKeyboardManager.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Kingfisher/Kingfisher.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Localize-Swift/Localize_Swift.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/MJRefresh/MJRefresh.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Moya-ObjectMapper/Moya_ObjectMapper.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Moya/Moya.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/ObjectMapper/ObjectMapper.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Result/Result.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SVProgressHUD/SVProgressHUD.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SnapKit/SnapKit.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SwipyCell/SwipyCell.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/TZImagePickerController/TZImagePickerController.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/netfox/netfox.framework/Headers -Xcc -I/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Pods/Headers/Public -Xcc -I/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Pods/Headers/Public/TestFairy -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/DerivedSources-normal/x86_64 -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/DerivedSources/x86_64 -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/DerivedSources -Xcc -DDEBUG=1 -Xcc -DCOCOAPODS=1 -import-objc-header /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Intranet-Bridging-Header.h -pch-output-dir /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/PrecompiledHeaders -module-name Intranet_innoways_dev -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/VerificationViewController.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/Login.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/NoticeDetailViewController.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/FromDateContentRow.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/DataSource.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/BaseFormViewController.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/HeaderViewReusableView.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/PrettyCashClaimsDetailController.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/UIImageExtension.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/AppUpdateManger.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/TableRow.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/FilterFotterCollectionReusableView.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/TableInlineRow.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/SearchHeader.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/CustomBtnRow.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/DateTools.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/AppDelegate.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/CollectionViewJobNumberCell.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/FilterSearchView.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/ICloudDocumentModel.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/JobNoCell.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/PrettyCashClaimsViewController.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/JobNo.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/UDatePicker.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/TravellingClaimsTableViewCell.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/BaseTabbarButton.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/SecondPageView.o -index-store-path /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Index/DataStore -index-system-modules1. Contents of /var/folders/0p/1mcy65n125164bx5wwt7btw80000gp/T/sources-e72541:---/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/LaunchingAndLoginRegister/VerificationViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/Service/Login.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/NoticeDetailViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/DateCustomCell/FromDateContentRow.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Model/DataSource.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/BaseFormViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/View/HeaderViewReusableView.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/PettyCashClaims/Controllers/PrettyCashClaimsDetailController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Tools/UIImageExtension.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Comm/AppUpdateManger.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/TableInline/TableRow.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/search/Cell/FilterFotterCollectionReusableView.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/TableInline/TableInlineRow.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/search/SearchHeader.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/FileCustomCell/CustomBtnRow.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Tools/TimeZone/DateTools.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/AppDelegate.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/JobNumberCell/CollectionViewJobNumberCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/search/FilterSearchView.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/FileCustomCell/ICloudManager/ICloudDocumentModel.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/JobNoCell/JobNoCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/PettyCashClaims/Controllers/PrettyCashClaimsViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/TravellingClaims/Models/JobNo.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/FileCustomCell/Media/UDatePicker.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/TravellingClaims/Views/TravellingClaimsTableViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/View/BaseTabbarButton.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/LaunchingAndLoginRegister/ScrollViewPageView/SecondPageView.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/BaseViewController/BaseViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/Service/UserService.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Setting/SettingViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Comm/ZToolManager.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/TravellingClaims/Controllers/TravellingClaimsViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/LaunchingAndLoginRegister/MessegeViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/FileCustomCell/ICloudManager/ICloudDocumentPickerViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Leave/Cotrollers/LeaveViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Approval/Views/ApprovalLeaveTableViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Model/CompanyAppModel.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/LaunchingAndLoginRegister/ForgetPasswordViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/FileCustomCell/ICloudManager/ICloudManager.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/MainInterfaceViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/View/ProfileTableViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Approval/Views/ApproveMainCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Model/AllAppModel.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Approval/Views/ApprovalPettyTableViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/JobNumberCell/TableViewJobNumberCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Approval/Cotrollers/ApprovalVoidViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Model/GoalModel.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/ImageCell/ImageRow.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/LaunchingAndLoginRegister/LoginViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/UserSettingViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Approval/Cotrollers/ApprovalViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/View/IntranetCollectionViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Overtime/Views/OTTableViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/TravellingClaims/Models/TravellingClaimModel.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/JobNumberCell/JobNumberRow.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Overtime/Models/OverTimeModel.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/View/NotificationTableViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/JobNumberCell/TRCollectionViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/SecurityManager/SecurityManager.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Approval/Views/ApprovalTravelTableViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/CustomCell/SummaryTableViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/search/Cell/FilterHeaderCollectionReusableView.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/ThemeManager.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/WGPopMenu.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Extension/UIViewExtension.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/UIView.SuperView.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/LaunchingAndLoginRegister/ScrollViewPageView/ThirdPageView.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/ChekInOut/CheckInOutTableViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Extension/StringExtension.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/LaunchingAndLoginRegister/WelcomeViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Approval/Cotrollers/ApprovalDetailViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/FileCustomCell/ICloudManager/ICloudFileHelper.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/IntranetViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/FieldCustomCell/RequiredFieldRow.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/HomeViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/FileCustomCell/CustomBtnCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/FieldCustomCell/RequiredFieldCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/LaunchingAndLoginRegister/ScrollViewPageView/FourPageView.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/TravellingClaims/Controllers/TravellingClaimsDetailController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/JobNumberCell/JobNumberCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/Service/LoginModel.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Tools/SwiftQRCode/SwiftQRCodeVC.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/ProfileViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/JobNumberCell/ScanCodeViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/AllViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Extension/UIColorExtension.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/ImageCell/ImageCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Comm/IntranetPrintLog.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/FileCustomCell/FileCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/View/AllAppTableViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/search/Cell/FilterCollectionViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/FileCustomCell/FileRow.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/DateCustomCell/FromDateInlineRow.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/JobNumberCell/TRTableViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Approval/Cotrollers/FilePreviewViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/JobNoCell/JobNoRow.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/LaunchingAndLoginRegister/LaunchingViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Overtime/Controllers/OTViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/LaunchingAndLoginRegister/ScrollViewPageView/FirstPageView.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/SigntureFile/SignatureViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Model/IntranetModel.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/ChekInOut/CheckInOutViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Extension/WGResponseTool.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/DateCustomCell/FromDateContentTableCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/SecurityManager/MD5+String.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Comm/Constant.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Leave/Cotrollers/LeaveDetailViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Leave/Views/LeaveTableViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/User/UserSingleton.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/NoticeViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/BaseViewController/INFormRowDescriptor.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/ImageCell/ImagePickerController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/BaseViewController/BaseNavigationController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Comm/Api.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Approval/Views/ApprovalOTTableViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Tools/Helper.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/PettyCashClaims/Views/PrettyCashClaimsTableViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/TableInline/IntrinsicContentSizeTableView.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Approval/Models/AppovalListModel.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/CompanyViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Leave/Models/LeaveAppListModel.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Tools/ARAlamofire.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/View/MainCollectionCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/JobNumberCell/String+JobNumberRow.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/protocol/DataSourceProtocol.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Comm/Alamofire.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/PettyCashClaims/Models/PettyClaimModel.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/search/JXPopupView.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Overtime/Controllers/EditOTViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Approval/Cotrollers/ApprovalRejectViewController.swift---2. While type-checking 'TableInlineRow' (at /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/TableInline/TableInlineRow.swift:61:14)3. While type-checking 'setupInlineRow(_:)' (at /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/TableInline/TableInlineRow.swift:88:21)4. While validating 'setupInlineRow(_:)' (at /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/TableInline/TableInlineRow.swift:88:21)5. While resolving type InlineRow at [/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/TableInline/TableInlineRow.swift:88:54 - line:88:54] RangeText=""6. While resolving requirement Eureka.(file).InlineRowType.InlineRow in conformance &lt;T where T : Equatable&gt; TableInlineRow&lt;T&gt;: InlineRowType module Intranet_innoways_dev7. While evaluating request OverriddenDeclsRequest(Intranet_innoways_dev.(file).TableInlineRow.setupInlineRow@/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/TableInline/TableInlineRow.swift:88:26)0 swift 0x0000000111159a13 PrintStackTraceSignalHandler(void*) + 511 swift 0x00000001111591e6 SignalHandler(int) + 3582 libsystem_platform.dylib 0x00007fff74385b5d _sigtramp + 293 libsystem_platform.dylib 0x0000000000000001 _sigtramp + 23451168654 swift 0x000000010d919eda (anonymous namespace)::OverrideMatcher::match((anonymous namespace)::OverrideCheckingAttempt) + 4905 swift 0x000000010d9849d0 swift::SimpleRequest&lt;swift::OverriddenDeclsRequest, (swift::CacheKind)2, llvm::TinyPtrVector&lt;swift::ValueDecl*&gt;, swift::ValueDecl*&gt;::evaluateRequest(swift::OverriddenDeclsRequest const&amp;, swift::Evaluator&amp;) + 18086 swift 0x000000010d8f1359 llvm::Expected&lt;swift::OverriddenDeclsRequest::OutputType&gt; swift::Evaluator::getResultUncached&lt;swift::OverriddenDeclsRequest&gt;(swift::OverriddenDeclsRequest const&amp;) + 5217 swift 0x000000010d8f0feb llvm::Expected&lt;swift::OverriddenDeclsRequest::OutputType&gt; swift::Evaluator::getResultCached&lt;swift::OverriddenDeclsRequest, (void*)0&gt;(swift::OverriddenDeclsRequest const&amp;) + 2838 swift 0x000000010d8f0aa9 llvm::Expected&lt;swift::OverriddenDeclsRequest::OutputType&gt; swift::Evaluator::operator()&lt;swift::OverriddenDeclsRequest&gt;(swift::OverriddenDeclsRequest const&amp;) + 1059 swift 0x000000010d8f0898 swift::OverriddenDeclsRequest::OutputType swift::evaluateOrDefault&lt;swift::OverriddenDeclsRequest&gt;(swift::Evaluator&amp;, swift::OverriddenDeclsRequest, swift::OverriddenDeclsRequest::OutputType) + 4010 swift 0x000000010dc8e2ea swift::ValueDecl::getOverriddenDecl() const + 10611 swift 0x000000010dd24af8 swift::removeOverriddenDecls(llvm::SmallVectorImpl&lt;swift::ValueDecl*&gt;&amp;) + 60012 swift 0x000000010d9364ba (anonymous namespace)::LookupResultBuilder::~LookupResultBuilder() + 4213 swift 0x000000010d937a8f swift::TypeChecker::lookupMember(swift::DeclContext*, swift::Type, swift::DeclName, swift::OptionSet&lt;swift::NameLookupFlags, unsigned int&gt;) + 46314 swift 0x000000010d94b869 swift::WitnessChecker::lookupValueWitnesses(swift::ValueDecl*, bool*) + 8915 swift 0x000000010d9742d6 swift::AssociatedTypeInference::inferTypeWitnessesViaValueWitnesses(swift::ConformanceChecker&amp;, llvm::SetVector&lt;swift::AssociatedTypeDecl*, std::__1::vector&lt;swift::AssociatedTypeDecl*, std::__1::allocator&lt;swift::AssociatedTypeDecl*&gt; &gt;, llvm::DenseSet&lt;swift::AssociatedTypeDecl*, llvm::DenseMapInfo&lt;swift::AssociatedTypeDecl*&gt; &gt; &gt; const&amp;) + 269416 swift 0x000000010d97e33e swift::AssociatedTypeInference::solve(swift::ConformanceChecker&amp;) + 78217 swift 0x000000010d98014f swift::ConformanceChecker::resolveTypeWitnesses() + 25518 swift 0x000000010d96c7dd swift::TypeChecker::resolveTypeWitness(swift::NormalProtocolConformance const*, swift::AssociatedTypeDecl*) + 33319 swift 0x000000010dd3bb60 swift::NormalProtocolConformance::getTypeWitnessAndDecl(swift::AssociatedTypeDecl*, swift::LazyResolver*, swift::SubstOptions) const + 60820 swift 0x000000010dd3b1fe swift::ProtocolConformance::getTypeWitnessAndDecl(swift::AssociatedTypeDecl*, swift::LazyResolver*, swift::SubstOptions) const + 28621 swift 0x000000010dd4dac6 getMemberForBaseType(llvm::function_ref&lt;llvm::Optional&lt;swift::ProtocolConformanceRef&gt; (swift::CanType, swift::Type, swift::ProtocolDecl*)&gt;, swift::Type, swift::Type, swift::AssociatedTypeDecl*, swift::Identifier, swift::SubstOptions) + 146222 swift 0x000000010dd4d2ff llvm::Optional&lt;swift::Type&gt; llvm::function_ref&lt;llvm::Optional&lt;swift::Type&gt; (swift::TypeBase*)&gt;::callback_fn&lt;substType(swift::Type, llvm::function_ref&lt;swift::Type (swift::SubstitutableType*)&gt;, llvm::function_ref&lt;llvm::Optional&lt;swift::ProtocolConformanceRef&gt; (swift::CanType, swift::Type, swift::ProtocolDecl*)&gt;, swift::SubstOptions)::$_17&gt;(long, swift::TypeBase*) + 75123 swift 0x000000010dd49fa1 swift::Type::transformRec(llvm::function_ref&lt;llvm::Optional&lt;swift::Type&gt; (swift::TypeBase*)&gt;) const + 4924 swift 0x000000010dd4c487 substType(swift::Type, llvm::function_ref&lt;swift::Type (swift::SubstitutableType*)&gt;, llvm::function_ref&lt;llvm::Optional&lt;swift::ProtocolConformanceRef&gt; (swift::CanType, swift::Type, swift::ProtocolDecl*)&gt;, swift::SubstOptions) + 29525 swift 0x000000010d9a5e04 swift::TypeChecker::substMemberTypeWithBase(swift::ModuleDecl*, swift::TypeDecl*, swift::Type, bool) + 155626 swift 0x000000010d9b0f15 resolveTypeDecl(swift::TypeDecl*, swift::SourceLoc, swift::DeclContext*, swift::TypeResolution, swift::GenericIdentTypeRepr*, swift::TypeResolutionOptions) + 26127 swift 0x000000010d9af81e resolveIdentTypeComponent(swift::TypeResolution, llvm::ArrayRef&lt;swift::ComponentIdentTypeRepr*&gt;, swift::TypeResolutionOptions) + 143828 swift 0x000000010d9acb15 swift::TypeChecker::resolveIdentifierType(swift::TypeResolution, swift::IdentTypeRepr*, swift::TypeResolutionOptions) + 21329 swift 0x000000010d9a8b04 (anonymous namespace)::TypeResolver::resolveType(swift::TypeRepr*, swift::TypeResolutionOptions) + 29230 swift 0x000000010d9a800d swift::TypeResolution::resolveType(swift::TypeRepr*, swift::TypeResolutionOptions) + 41331 swift 0x000000010d9b3562 swift::TypeChecker::validateType(swift::TypeLoc&amp;, swift::TypeResolution, swift::TypeResolutionOptions) + 14632 swift 0x000000010d93dd57 validateParameterType(swift::ParamDecl*, swift::TypeResolution, swift::TypeResolutionOptions, swift::TypeChecker&amp;) + 13533 swift 0x000000010d93d8d5 swift::TypeChecker::typeCheckParameterList(swift::ParameterList*, swift::TypeResolution, swift::TypeResolutionOptions) + 18134 swift 0x000000010d92f97d swift::TypeChecker::validateGenericFuncSignature(swift::AbstractFunctionDecl*) + 398135 swift 0x000000010d8fdbe8 swift::TypeChecker::validateDecl(swift::ValueDecl*) + 799236 swift 0x000000010d900a90 (anonymous namespace)::DeclChecker::visitFuncDecl(swift::FuncDecl*) + 4837 swift 0x000000010d8f4d05 (anonymous namespace)::DeclChecker::visit(swift::Decl*) + 27738 swift 0x000000010d8f51cb (anonymous namespace)::DeclChecker::visit(swift::Decl*) + 149939 swift 0x000000010d9b52e6 swift::performTypeChecking(swift::SourceFile&amp;, swift::TopLevelContext&amp;, swift::OptionSet&lt;swift::TypeCheckingFlags, unsigned int&gt;, unsigned int, unsigned int, unsigned int, unsigned int, unsigned int) + 170240 swift 0x000000010d0a8bdb swift::CompilerInstance::parseAndCheckTypesUpTo(swift::CompilerInstance::ImplicitImports const&amp;, swift::SourceFile::ASTStage_t)::$_0::operator()(swift::SourceFile&amp;) const + 9141 swift 0x000000010d0a793b swift::CompilerInstance::performSemaUpTo(swift::SourceFile::ASTStage_t) + 537142 swift 0x000000010cd9d216 performCompile(swift::CompilerInstance&amp;, swift::CompilerInvocation&amp;, llvm::ArrayRef&lt;char const*&gt;, int&amp;, swift::FrontendObserver*, swift::UnifiedStatsReporter*) + 80643 swift 0x000000010cd996e4 swift::performFrontend(llvm::ArrayRef&lt;char const*&gt;, char const*, void*, swift::FrontendObserver*) + 682044 swift 0x000000010cd26be3 main + 121945 libdyld.dylib 0x00007fff7419a3d5 start + 1error: Segmentation fault: 11 (in target 'Intranet_innoways_dev' from project 'Intranet')Please help me out I am getting tired to solve this error
2
0
2.9k
Nov ’22
Canonical, up-to-date documentation of Apple's assembler ?
I'm trying to get hold of a reliable documentation for the Apple assember ('as'), especially for the M1/M2 ARM architecture, but I suspect it's similar for x86 as well. I found outdated links here: https://developer.apple.com/library/archive/documentation/DeveloperTools/Reference/Assembler/000-Introduction/introduction.html But the new documentation site for Xcode (I assume this is where I would have to look) does not seem to have assembler documentation. It's possible that apple uses the clang-llvm assembler, but it would then be nice to have an authoritative pointer to that documentation. Web searches seem futile for this subject :( Thanks for any pointers.
4
1
1.6k
Oct ’22
xcframework: how to wrap a static library?
This topic was touched on in the notes for the WWDC 2019 session on Binary Frameworks - I even watched the whole video but it wasn't covered there.It appears I should be able to wrap a static library - one that is created by its own (complex) build scripts - and have iOS, iOS Simulator and macOS versions. Also, that the header files can be included as well.I have been unable to find any information googling around on how one might do this. I would greatly appreciate any pointers to some blog/post that covers this.Thanks!
9
1
16k
Oct ’22
How to stop updating Command Line Tools
Hi, I have some code that relies on CLT for Xcode 13.4. After MacOS pushed the update to CLT for Xcode 14, my compilation routine broke and it took some time to realise that it was due to this recent update. I managed to downgrade CLT to the previous version, but I had to disable automatic updates to avoid the new version being installed again. So the question is, is it possible to stop updates to CLT for Xcode 13.4? Alternatively, is there a way to install two versions of CLT in two separate folders and then use xcode-select -s for the one I need? Thanks! I assume yes (why would we have the option -s then), but I could not find a way to have two different folders though.
2
0
2.0k
Sep ’22
Is special meaning of C statements inside of Objective-C class sections documented anywhere?
There are quite a few features a C function acquires when defined inside of the @implementation block of an Objective-C class, e.g. it can be accessed before declared: @implementation TDWClass - (void)method { bar(); // the function is accessible here despite not being declared in the code before } void bar(void) { NSLog(@"Test"); } @end Plus it is granted access to the private ivars of the class: @implementation TDWClass { @private int _var; } - (void)foo { bar(self); } void bar(TDWClass *self) { self->_var += 2; // a private instance variable accessed } @end Some sources also say that static variables inside of @implementantion section had special meaning (unlike C static they were private to the enclosing class, not the compilation unit), however I could not reproduce this on my end. Having that said, almost all such features were either deduced or found on third-party sources. I wonder if anything like that is/had ever been documented anywhere, so i can read through full list or special meanings of C statements inside of Objective-C class sections?
1
1
1.2k
Sep ’22
ld: library not found for -lstdc++fs
make command is failing with the below mentioned lines. Can someone please help me with this? Thanks! ld: library not found for -lstdc++fs clang: error: linker command failed with exit code 1 (use -v to see invocation) Below are the list of gcc and clang versions. Target: x86_64-apple-darwin21.6.0 Thread model: posix InstalledDir: /Library/Developer/CommandLineTools/usr/bin (base) rmagesh@Mageshs-MacBook-Pro src % gcc -v Apple clang version 14.0.0 (clang-1400.0.29.102) Target: x86_64-apple-darwin21.6.0 Thread model: posix InstalledDir: /Library/Developer/CommandLineTools/usr/bin (base) rmagesh@Mageshs-MacBook-Pro src % clang++ -c clang: error: no input files (base) rmagesh@Mageshs-MacBook-Pro src % clang++ -v Apple clang version 14.0.0 (clang-1400.0.29.102) Target: x86_64-apple-darwin21.6.0 Thread model: posix InstalledDir: /Library/Developer/CommandLineTools/usr/bin (base) rmagesh@Mageshs-MacBook-Pro src % clang -v Apple clang version 14.0.0 (clang-1400.0.29.102) Target: x86_64-apple-darwin21.6.0 Thread model: posix InstalledDir: /Library/Developer/CommandLineTools/usr/bin (base) rmagesh@Mageshs-MacBook-Pro src % `
1
0
2.6k
Sep ’22
Tensorflow on Apple M1 cannot import
Hi, OS: macOS 12.4 CPU: Apple M1 I cannot import the new TensorFlow 2.9.0 on Apple M1. I got an error: --------------------------------------------------------------------------- TypeError Traceback (most recent call last) /Users/martin/Documents/Projects/Solar-Transformer/Testing.ipynb Cell 3' in <cell line: 1>() ----> 1 from tensorflow.keras.layers import Add, Dense, Dropout, Layer, LayerNormalization, MultiHeadAttention, Normalization 2 from tensorflow.keras.models import Model 3 from tensorflow.keras.initializers import TruncatedNormal File ~/miniforge3/lib/python3.9/site-packages/tensorflow/__init__.py:37, in <module> 34 import sys as _sys 35 import typing as _typing ---> 37 from tensorflow.python.tools import module_util as _module_util 38 from tensorflow.python.util.lazy_loader import LazyLoader as _LazyLoader 40 # Make sure code inside the TensorFlow codebase can use tf2.enabled() at import. File ~/miniforge3/lib/python3.9/site-packages/tensorflow/python/__init__.py:42, in <module> 37 from tensorflow.python.eager import context 39 # pylint: enable=wildcard-import 40 41 # Bring in subpackages. ---> 42 from tensorflow.python import data 43 from tensorflow.python import distribute 44 # from tensorflow.python import keras File ~/miniforge3/lib/python3.9/site-packages/tensorflow/python/data/__init__.py:21, in <module> 15 """`tf.data.Dataset` API for input pipelines. 16 17 See [Importing Data](https://tensorflow.org/guide/data) for an overview. 18 """ 20 # pylint: disable=unused-import ---> 21 from tensorflow.python.data import experimental 22 from tensorflow.python.data.ops.dataset_ops import AUTOTUNE 23 from tensorflow.python.data.ops.dataset_ops import Dataset File ~/miniforge3/lib/python3.9/site-packages/tensorflow/python/data/util/structure.py:22, in <module> 19 import six 20 import wrapt ---> 22 from tensorflow.python.data.util import nest 23 from tensorflow.python.framework import composite_tensor 24 from tensorflow.python.framework import ops File ~/miniforge3/lib/python3.9/site-packages/tensorflow/python/data/util/nest.py:36, in <module> 16 """## Functions for working with arbitrarily nested sequences of elements. 17 18 NOTE(mrry): This fork of the `tensorflow.python.util.nest` module (...) 31 arrays. 32 """ 34 import six as _six ---> 36 from tensorflow.python.framework import sparse_tensor as _sparse_tensor 37 from tensorflow.python.util import _pywrap_utils 38 from tensorflow.python.util import nest File ~/miniforge3/lib/python3.9/site-packages/tensorflow/python/framework/sparse_tensor.py:24, in <module> 22 from tensorflow.python import tf2 23 from tensorflow.python.framework import composite_tensor ---> 24 from tensorflow.python.framework import constant_op 25 from tensorflow.python.framework import dtypes 26 from tensorflow.python.framework import ops File ~/miniforge3/lib/python3.9/site-packages/tensorflow/python/framework/constant_op.py:25, in <module> 23 from tensorflow.core.framework import types_pb2 24 from tensorflow.python.eager import context ---> 25 from tensorflow.python.eager import execute 26 from tensorflow.python.framework import dtypes 27 from tensorflow.python.framework import op_callbacks File ~/miniforge3/lib/python3.9/site-packages/tensorflow/python/eager/execute.py:23, in <module> 21 from tensorflow.python import pywrap_tfe 22 from tensorflow.python.eager import core ---> 23 from tensorflow.python.framework import dtypes 24 from tensorflow.python.framework import ops 25 from tensorflow.python.framework import tensor_shape File ~/miniforge3/lib/python3.9/site-packages/tensorflow/python/framework/dtypes.py:29, in <module> 26 from tensorflow.python.lib.core import _pywrap_bfloat16 27 from tensorflow.python.util.tf_export import tf_export ---> 29 _np_bfloat16 = _pywrap_bfloat16.TF_bfloat16_type() 32 @tf_export("dtypes.DType", "DType") 33 class DType(_dtypes.DType): 34 """Represents the type of the elements in a `Tensor`. 35 36 `DType`'s are used to specify the output data type for operations which (...) 46 See `tf.dtypes` for a complete list of `DType`'s defined. 47 """ Example code: from tensorflow.keras.layers import Add, Dense, Dropout, Layer, LayerNormalization, MultiHeadAttention, Normalization from tensorflow.keras.models import Model from tensorflow.keras.initializers import TruncatedNormal from tensorflow.keras.utils import timeseries_dataset_from_array import tensorflow as tf import tensorflow_probability as tfp import numpy as np
2
0
3.2k
Sep ’22
All Objective-C++ code breaks when setting C++20
I'm trying to update all my projects to C++20. The C++ only projects work fine. All the Objective-C++ files, though, suddenly stop compiling. Is this supposed to work. I can't imagine [NSString stringWithUTF8String:foo] should be failing. Setting the project back to C++17 works. I do have -fmodules and -fcxx-modules for clang modules in some projects. Do those all need to be removed for C++20 modules?
4
0
2.0k
Sep ’22
Optimization bug in Apple clang version 14.0.0
Source code: #include <cstdio> static const char encodeBase64Table[64 + 1] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; int main() { // create decoding table unsigned long invalid = 64; unsigned long decodeBase64Table[256] = {}; for (unsigned long i = 0; i < 256; i++) decodeBase64Table[i] = invalid; for (unsigned long i = 0; i < 64; i++) { decodeBase64Table[(unsigned char)encodeBase64Table[i]] = i; } printf("decodeBase64Table[65] = %lu\n", decodeBase64Table[65]); return 0; } Apple Clang 11.0.3 (expected output, even with -O3): /t/s/1673994196 ❯❯❯ /usr/bin/clang++ --version Apple clang version 11.0.3 (clang-1103.0.32.62) Target: x86_64-apple-darwin21.6.0 Thread model: posix InstalledDir: /Library/Developer/CommandLineTools/usr/bin /t/s/1673994196 ❯❯❯ /usr/bin/clang++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -O3 a.cpp /t/s/1673994196 ❯❯❯ ./a.out decodeBase64Table[65] = 0 Apple Clang 14.0.0 (unexpected output, only with -O3): /t/s/1673994196 ❯❯❯ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ --version Apple clang version 14.0.0 (clang-1400.0.29.202) Target: x86_64-apple-darwin21.6.0 Thread model: posix InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin /t/s/1673994196 ❯❯❯ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -O3 a.cpp /t/s/1673994196 ❯❯❯ ./a.out decodeBase64Table[65] = 64 This problem is reproducible on x86_64 and arm64
Replies
2
Boosts
0
Views
1.6k
Activity
Jan ’23
Why does ld64 require DWARF personality symbols to be extern?
The linker seems to require my exception handling personality symbol to have external visibility. This is a problem because the symbol being visible can cause consumers of my static library to run into link failures due to name collision. I would like the symbol to be local. To see what I mean, create test.s: ; ld64 fails to link unless the following line is uncommented: ; .private_extern _my_personality ; ; lld version 15 links successfully either way. .align 4 _my_personality: ret .global _fun .align 4 _fun: .cfi_startproc ; 0x9b = DW_EH_PE_pcrel | DW_EH_PE_indirect | DW_EH_PE_sdata4 .cfi_personality 0x9b, _my_personality ; This encodes DW_CFA_GNU_args_size, which compact unwind can't encode. ; Also repros with .cfi_escape 0 .cfi_escape 0x2e, 0x10 ret .cfi_endproc Then run as test.s -o test.o && clang -shared test.o. This is the error I get: Undefined symbols for architecture arm64: "_my_personality", referenced from: Dwarf Exception Unwind Info (__eh_frame) in cat.o ld: symbol(s) not found for architecture arm64 clang: error: linker command failed with exit code 1 (use -v to see invocation) I'm posting test.s just so there is a self-contained test case. In practice this is for Ruby and the personality function is _rust_eh_personality. LLVM's LLD (version 15) links fine when the symbol is local, but I can't force users to use LLD. It would be nice if ld64 can allow linking when the symbol is local. I'm using XCode 14. So ld64-820.1 and clang-1400.0.29.202.
Replies
0
Boosts
0
Views
1k
Activity
Jan ’23
Structured binding together with OpenMP not compiling
Hi all, I came across a strange compiler error that occurs when I use structured binding in combination with an OpenMP parallel region. A minimal example code is as follows: #include <tuple> #ifdef OPENMMP_ #include <omp.h> #endif auto create() {   int    a = 10;   double b = 1.0;   return std::tie(a,b); } int main() {   auto [a, b] = create();   double vector[100]; #pragma omp parallel for   for (int i=0; i<a; ++i)     vector[i] = b; } I am using Apple clang version: Apple clang version 14.0.0 (clang-1400.0.29.202) Target: arm64-apple-darwin22.2.0 Thread model: posix InstalledDir: /Library/Developer/CommandLineTools/usr/bin When compiled with g++ -std=c++17 test.cxx I get no the compiler error and the executable works. When compiled with g++ -Xclang -fopenmp -std=c++17 test.cxx I get the compiler error: test.cxx:22:19: error: reference to local binding 'a' declared in enclosing function 'main'   for (int i=0; i<a; ++i)                   ^ test.cxx:17:9: note: 'a' declared here   auto [a, b] = create();         ^ test.cxx:23:17: error: reference to local binding 'b' declared in enclosing function 'main'     vector[i] = b;                 ^ test.cxx:17:12: note: 'b' declared here   auto [a, b] = create();            ^ 2 errors generated. This error does not occur when I compile the code with g++-12 from the Homebrew project. Any help is appreciated.
Replies
0
Boosts
0
Views
952
Activity
Jan ’23
error: arithmetic on a pointer to an incomplete type 'Xstring'
Hi there, since upgrading to the latest Xcode and Command Line Tools, I get the follwoing error when compiling: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/wrap_iter.h:133:13: error: arithmetic on a pointer to an incomplete type 'Xstring' __i += __n; ~~~ ^ Does anyone has an idea, how to overcome this , is there a compiler flag which I am missing ? Thanks a lot Best Hannes. PS: here is the full compilation and error: g++ -DPACKAGE_NAME="xfitter" -DPACKAGE_TARNAME="xfitter" -DPACKAGE_VERSION="VERSION_NUMBER" -DPACKAGE_STRING="xfitter\ VERSION_NUMBER" -DPACKAGE_BUGREPORT="" -DPACKAGE_URL="" -DPACKAGE="xfitter" -DVERSION="VERSION_NUMBER" -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=".libs/" -DFC_FUNC(name,NAME)=name\ ##\ _ -DFC_FUNC_(name,NAME)=name\ ##\ _ -DF77_FUNC(name,NAME)=name\ ##\ _ -DF77_FUNC_(name,NAME)=name\ ##\ _ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DLHAPDF_ENABLED=1 -DLHAPDF_FAMILY=6 -DROOT_ENABLED=1 -I. -fPIC -I./linalg -fPIC -Wno-deprecated -stdlib=libc++ -pthread -std=c++17 -m64 -I/opt/homebrew/Cellar/root/6.26.06_2/include/root -w -g -O2 -std=c++17 -lstdc++ -MT FitPars_base.o -MD -MP -MF .deps/FitPars_base.Tpo -c -o FitPars_base.o FitPars_base.cc In file included from FitPars_base.cc:10: In file included from ./FitPars_base.h:10: In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/map:495: In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__node_handle:15: In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/memory:681: In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/raw_storage_iterator.h:16: In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/iterator:609: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/wrap_iter.h:133:13: error: arithmetic on a pointer to an incomplete type 'Xstring' __i += __n; ~~~ ^ /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/wrap_iter.h:126:38: note: in instantiation of member function 'std::__wrap_iter&amp;lt;Xstring *&amp;gt;::operator+=' requested here {__wrap_iter __w(*this); __w += __n; return __w;} ^ ./Xstring.h:40:32: note: in instantiation of member function 'std::__wrap_iter&amp;lt;Xstring *&amp;gt;::operator+' requested here A.erase(A.begin(),A.begin()+start); ^ ./Xstring.h:27:7: note: forward declaration of 'Xstring' class Xstring; ^ 1 error generated.
Replies
1
Boosts
0
Views
1.6k
Activity
Dec ’22
llvm-symbolizer not found in Xcode
after install XCode, llvm-dwarfdump llvm-objdump .. these can be found under "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/" but llvm-symbolizer is not FOUND. Should I install llvm by myself if I need llvm-symbolizer ? brew install llvm Error: llvm: the bottle needs the Apple Command Line Tools to be installed.  You can install them, if desired, with:   xcode-select --install If you're feeling brave, you can try to install from source with:  brew install --build-from-source llvm
Replies
0
Boosts
2
Views
1.7k
Activity
Dec ’22
What is `fma.shff`?
I'm trying to optimize code for the M1 GPU family (Apple 7 variants where F32 compute power equals F16 compute power). xcrun metal-opt mentions a compile option called -fma-shff-hoist-depth-agx2=<uint>. There's something called fma.shff. I'd like to know what the "SHFF" acronym stands for. Shuffle? Shift? Perhaps it's related to SIMD-group reductions.
Replies
0
Boosts
0
Views
967
Activity
Dec ’22
libc++ woes with Xcode 14
We are writing server-side C++ code that runs on Linux in production but some of the developers use Macs. We standardized on Clang 14 (or the equivalent Apple Clang) and libc++ as the runtime library. The dev environment is either VSCode or CLion. I have clang 14 installed via Xcode, and even though it also installed libc++ 14, it chooses to use libc++ 13 instead (from a different directory). % printf "#include <version>\nint main(){}" | /usr/bin/clang++ -std=c++20 -stdlib=libc++ -E -x c++ -dM - | grep _LIBCPP_VERSION #define _LIBCPP_VERSION 13000 Some investigation (grep output trimmed: % grep -R -H "#define _LIBCPP_VERSION" --include=__config --exclude-dir=System / 2>/dev/null /Library/Developer/CommandLineTools/usr/include/c++/v1/__config:#define _LIBCPP_VERSION 14000 /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/__config:#define _LIBCPP_VERSION 13000 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/__config:#define _LIBCPP_VERSION 14000 So 14.0 is installed, but the directory with 13.0 is selected: % printf "#include <__config>\nint main(){}" | /usr/bin/clang++ -std=c++20 -stdlib=libc++ -E -x c++ - | grep "2 3" # 14 "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/__config" 2 3 Let's see what else clang has to say: % /usr/bin/clang++ -v Apple clang version 14.0.0 (clang-1400.0.29.102) Target: arm64-apple-darwin21.6.0 Thread model: posix InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin % clang++ -print-search-dirs programs: =/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin libraries: =/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.0 So for some reason, clang takes the libraries from one directory, but the standard headers from another. I could try using -nostdlibinc and specifying the "correct" include directory explicitly, but I am not sure what the side effects will be and I'd rather understand what's going on.
Replies
2
Boosts
0
Views
2.3k
Activity
Dec ’22
Xcode 14 project compile error ... com.apple.xcode.tools.swift.compiler is not absolute
I am using a static linked c library in my project. There was no error in Xcode 13 but I am starting to get error below after upgraded to Xcode 14. This error doesn't seem to stop build from completing successfully. Dependency for P1:target-SwiftSMB-f940fa9bfd7461b6bfd7a1821b88923283a44e681aeb1f425a9cef51a7a8aacb-:Debug:SwiftDriver Compilation Requirements SwiftSMB normal x86_64 com.apple.xcode.tools.swift.compiler is not absolute (libsmb2/include/smb2/smb2.h). ... Showing All Errors Only Command SwiftDriver Compilation Requirements emitted errors but did not return a nonzero exit code to indicate failure
Replies
18
Boosts
13
Views
20k
Activity
Nov ’22
Apple Swift version 5.7 not working on Apple Swift version 5.6.1
We have built a binary framework created with Xcode 14.1 using Xcode 13.4.1 getting below error. BUILD_LIBRARY_FOR_DISTRIBUTION ENABLED TRUE. this SDK is not supported by the compiler (the SDK is built with 'Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51)', while this compiler is 'Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12)'). Please select a toolchain that matches the SDK.
Replies
2
Boosts
0
Views
5.6k
Activity
Nov ’22
C++ std::ranges algorithms
clang has supported std::ranges algorithms since clang 12, but this support is not available in Clang 14.0.0 arm64-apple-darwin22.1.0. Does Apple ever intend to support this, or do I have to switch to compiling using gcc to get these algorithms?
Replies
0
Boosts
1
Views
1.3k
Activity
Nov ’22
Segmentation fault: 11
I have recent move to new xcode from 10.1 to 11.2 but i am getting error ofSegmentation fault: 11project is running fine in xcode 10.1.error logs are below ::CompileSwift normal x86_64 /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/LaunchingAndLoginRegister/VerificationViewController.swift (in target 'Intranet_innoways_dev' from project 'Intranet') cd /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet /Applications/Xcode112.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -c -filelist /var/folders/0p/1mcy65n125164bx5wwt7btw80000gp/T/sources-e72541 -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/LaunchingAndLoginRegister/VerificationViewController.swift -emit-module-path /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/VerificationViewController\~partial.swiftmodule -emit-module-doc-path /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/VerificationViewController\~partial.swiftdoc -serialize-diagnostics-path /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/VerificationViewController.dia -emit-dependencies-path /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/VerificationViewController.d -emit-reference-dependencies-path /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/VerificationViewController.swiftdeps -target x86_64-apple-ios12.1-simulator -enable-objc-interop -sdk /Applications/Xcode112.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk -I /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Alamofire -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/CLTokenInputView -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/CYLTableViewPlaceHolder -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Eureka -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/IQKeyboardManager -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Kingfisher -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Localize-Swift -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/MJRefresh -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Moya -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Moya-ObjectMapper -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/ObjectMapper -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Result -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SVProgressHUD -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SnapKit -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SwiftyJSON -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SwipyCell -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/TZImagePickerController -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/netfox -enable-testing -g -module-cache-path /Users/IOSDev/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 4.2 -enforce-exclusivity=checked -Onone -D Intranet_innoways_dev -D COCOAPODS -serialize-debugging-options -Xcc -working-directory -Xcc /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet -enable-anonymous-context-mangled-names -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Intranet_innoways_dev-generated-files.hmap -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Intranet_innoways_dev-own-target-headers.hmap -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Intranet_innoways_dev-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Intranet_innoways_dev-project-headers.hmap -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/include -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/CLTokenInputView/CLTokenInputView.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/CYLTableViewPlaceHolder/CYLTableViewPlaceHolder.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Eureka/Eureka.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/IQKeyboardManager/IQKeyboardManager.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Kingfisher/Kingfisher.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Localize-Swift/Localize_Swift.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/MJRefresh/MJRefresh.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Moya-ObjectMapper/Moya_ObjectMapper.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Moya/Moya.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/ObjectMapper/ObjectMapper.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Result/Result.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SVProgressHUD/SVProgressHUD.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SnapKit/SnapKit.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SwipyCell/SwipyCell.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/TZImagePickerController/TZImagePickerController.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/netfox/netfox.framework/Headers -Xcc -I/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Pods/Headers/Public -Xcc -I/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Pods/Headers/Public/TestFairy -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/DerivedSources-normal/x86_64 -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/DerivedSources/x86_64 -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/DerivedSources -Xcc -DDEBUG=1 -Xcc -DCOCOAPODS=1 -import-objc-header /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Intranet-Bridging-Header.h -pch-output-dir /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/PrecompiledHeaders -pch-disable-validation -module-name Intranet_innoways_dev -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/VerificationViewController.o -index-store-path /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Index/DataStore -index-system-modules/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:444:25: warning: enum element with associated values must have at least one associated value; this will be an error in the future version of Swift case PayTypeOTMethod() ^~/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:444:25: note: did you mean to remove the empty associated value list? case PayTypeOTMethod() ^ /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:444:25: note: did you mean to explicitly add a 'Void' associated value? case PayTypeOTMethod() ^ Void/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:445:28: warning: enum element with associated values must have at least one associated value; this will be an error in the future version of Swift case PayTypeLeaveMethod() ^~/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:445:28: note: did you mean to remove the empty associated value list? case PayTypeLeaveMethod() ^ /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:445:28: note: did you mean to explicitly add a 'Void' associated value? case PayTypeLeaveMethod() ^ Void/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:446:27: warning: enum element with associated values must have at least one associated value; this will be an error in the future version of Swift case ProjectCodeMethod() ^~/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:446:27: note: did you mean to remove the empty associated value list? case ProjectCodeMethod() ^ /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:446:27: note: did you mean to explicitly add a 'Void' associated value? case ProjectCodeMethod() ^ Void/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:447:22: warning: enum element with associated values must have at least one associated value; this will be an error in the future version of Swift case RemarkMethod() ^~/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:447:22: note: did you mean to remove the empty associated value list? case RemarkMethod() ^ /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:447:22: note: did you mean to explicitly add a 'Void' associated value? case RemarkMethod() ^ Void/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:448:21: warning: enum element with associated values must have at least one associated value; this will be an error in the future version of Swift case LeaveMethod() ^~/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:448:21: note: did you mean to remove the empty associated value list? case LeaveMethod() ^ /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:448:21: note: did you mean to explicitly add a 'Void' associated value? case LeaveMethod() ^ Void/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:449:29: warning: enum element with associated values must have at least one associated value; this will be an error in the future version of Swift case PettyCategoryMethod() ^~/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:449:29: note: did you mean to remove the empty associated value list? case PettyCategoryMethod() ^ /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:449:29: note: did you mean to explicitly add a 'Void' associated value? case PettyCategoryMethod() ^ Void/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:450:29: warning: enum element with associated values must have at least one associated value; this will be an error in the future version of Swift case PettyCurrencyMethod() ^~/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:450:29: note: did you mean to remove the empty associated value list? case PettyCurrencyMethod() ^ /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:450:29: note: did you mean to explicitly add a 'Void' associated value? case PettyCurrencyMethod() ^ Void/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:451:30: warning: enum element with associated values must have at least one associated value; this will be an error in the future version of Swift case PettyTransportMethod() ^~/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:451:30: note: did you mean to remove the empty associated value list? case PettyTransportMethod() ^ /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift:451:30: note: did you mean to explicitly add a 'Void' associated value? case PettyTransportMethod() ^ Void/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/DateCustomCell/FromDateContentRow.swift:151:56: warning: immutable value 'index' was never used; consider replacing with '_' or removing it if let selectedValue = listRow?.value, let index = listRow?.options.index(of: selectedValue) { ^~~~~ _/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/PettyCashClaims/Controllers/PrettyCashClaimsDetailController.swift:152:39: warning: result of call to 'makeController()' is unused row.presentationMode?.makeController() ^ ~~/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/PettyCashClaims/Controllers/PrettyCashClaimsDetailController.swift:227:32: warning: immutable value 'avatar' was never used; consider replacing with '_' or removing it if let avatar = user.ref_code, let url = URL(string: user.ref_code) { ^~~~~~ _/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/PettyCashClaims/Controllers/PrettyCashClaimsDetailController.swift:227:60: warning: immutable value 'url' was never used; consider replacing with '_' or removing it if let avatar = user.ref_code, let url = URL(string: user.ref_code) { ^~~ _/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/PettyCashClaims/Controllers/PrettyCashClaimsDetailController.swift:446:32: warning: immutable value 'avatar' was never used; consider replacing with '_' or removing it if let avatar = user.ref_code, let url = URL(string: user.ref_code) { ^~~~~~ _/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/PettyCashClaims/Controllers/PrettyCashClaimsDetailController.swift:446:60: warning: immutable value 'url' was never used; consider replacing with '_' or removing it if let avatar = user.ref_code, let url = URL(string: user.ref_code) { ^~~ _/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/PettyCashClaims/Controllers/PrettyCashClaimsDetailController.swift:808:17: warning: immutable value 'refRow' was never used; consider replacing with '_' or removing it let refRow:BaseRow = TextRow("Ref"){row in ^~~~~~ _/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/PettyCashClaims/Controllers/PrettyCashClaimsDetailController.swift:812:17: warning: immutable value 'nameRow' was never used; consider replacing with '_' or removing it let nameRow:BaseRow = TextRow("Name"){ row in ^~~~~~~ _/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/PettyCashClaims/Controllers/PrettyCashClaimsDetailController.swift:818:17: warning: immutable value 'statusRow' was never used; consider replacing with '_' or removing it let statusRow:BaseRow = TextRow("Status"){ row in ^~~~~~~~~ _/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/TravellingClaims/Models/JobNo.swift:20:9: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'JobNo' to 'Hashable' by implementing 'hash(into:)' instead var hashValue: Int { ^/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Comm/AppUpdateManger.swift:26:13: warning: initialization of immutable value 'tool' was never used; consider replacing with assignment to '_' or removing it let tool = APIAlamofire() ~~~~^~~~ _Stack dump:0. Program arguments: /Applications/Xcode112.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -c -filelist /var/folders/0p/1mcy65n125164bx5wwt7btw80000gp/T/sources-e72541 -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/LaunchingAndLoginRegister/VerificationViewController.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/Service/Login.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/NoticeDetailViewController.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/DateCustomCell/FromDateContentRow.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Model/DataSource.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/BaseFormViewController.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/View/HeaderViewReusableView.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/PettyCashClaims/Controllers/PrettyCashClaimsDetailController.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Tools/UIImageExtension.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Comm/AppUpdateManger.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/TableInline/TableRow.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/search/Cell/FilterFotterCollectionReusableView.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/TableInline/TableInlineRow.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/search/SearchHeader.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/FileCustomCell/CustomBtnRow.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Tools/TimeZone/DateTools.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/AppDelegate.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/JobNumberCell/CollectionViewJobNumberCell.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/search/FilterSearchView.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/FileCustomCell/ICloudManager/ICloudDocumentModel.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/JobNoCell/JobNoCell.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/PettyCashClaims/Controllers/PrettyCashClaimsViewController.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/TravellingClaims/Models/JobNo.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/FileCustomCell/Media/UDatePicker.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/TravellingClaims/Views/TravellingClaimsTableViewCell.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/View/BaseTabbarButton.swift -primary-file /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/LaunchingAndLoginRegister/ScrollViewPageView/SecondPageView.swift -supplementary-output-file-map /var/folders/0p/1mcy65n125164bx5wwt7btw80000gp/T/supplementaryOutputs-fbb860 -target x86_64-apple-ios12.1-simulator -enable-objc-interop -sdk /Applications/Xcode112.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk -I /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Alamofire -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/CLTokenInputView -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/CYLTableViewPlaceHolder -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Eureka -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/IQKeyboardManager -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Kingfisher -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Localize-Swift -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/MJRefresh -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Moya -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Moya-ObjectMapper -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/ObjectMapper -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Result -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SVProgressHUD -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SnapKit -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SwiftyJSON -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SwipyCell -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/TZImagePickerController -F /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/netfox -enable-testing -g -module-cache-path /Users/IOSDev/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 4.2 -enforce-exclusivity=checked -Onone -D Intranet_innoways_dev -D COCOAPODS -serialize-debugging-options -Xcc -working-directory -Xcc /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet -enable-anonymous-context-mangled-names -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Intranet_innoways_dev-generated-files.hmap -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Intranet_innoways_dev-own-target-headers.hmap -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Intranet_innoways_dev-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Intranet_innoways_dev-project-headers.hmap -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/include -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/CLTokenInputView/CLTokenInputView.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/CYLTableViewPlaceHolder/CYLTableViewPlaceHolder.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Eureka/Eureka.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/IQKeyboardManager/IQKeyboardManager.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Kingfisher/Kingfisher.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Localize-Swift/Localize_Swift.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/MJRefresh/MJRefresh.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Moya-ObjectMapper/Moya_ObjectMapper.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Moya/Moya.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/ObjectMapper/ObjectMapper.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/Result/Result.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SVProgressHUD/SVProgressHUD.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SnapKit/SnapKit.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SwiftyJSON/SwiftyJSON.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/SwipyCell/SwipyCell.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/TZImagePickerController/TZImagePickerController.framework/Headers -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Products/Debug-iphonesimulator/netfox/netfox.framework/Headers -Xcc -I/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Pods/Headers/Public -Xcc -I/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Pods/Headers/Public/TestFairy -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/DerivedSources-normal/x86_64 -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/DerivedSources/x86_64 -Xcc -I/Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/DerivedSources -Xcc -DDEBUG=1 -Xcc -DCOCOAPODS=1 -import-objc-header /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Intranet-Bridging-Header.h -pch-output-dir /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/PrecompiledHeaders -module-name Intranet_innoways_dev -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/VerificationViewController.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/Login.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/NoticeDetailViewController.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/FromDateContentRow.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/DataSource.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/BaseFormViewController.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/HeaderViewReusableView.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/PrettyCashClaimsDetailController.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/UIImageExtension.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/AppUpdateManger.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/TableRow.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/FilterFotterCollectionReusableView.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/TableInlineRow.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/SearchHeader.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/CustomBtnRow.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/DateTools.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/AppDelegate.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/CollectionViewJobNumberCell.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/FilterSearchView.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/ICloudDocumentModel.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/JobNoCell.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/PrettyCashClaimsViewController.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/JobNo.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/UDatePicker.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/TravellingClaimsTableViewCell.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/BaseTabbarButton.o -o /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Build/Intermediates.noindex/Intranet.build/Debug-iphonesimulator/Intranet_innoways_dev.build/Objects-normal/x86_64/SecondPageView.o -index-store-path /Users/IOSDev/Library/Developer/Xcode/DerivedData/Intranet-anbztvjvqbkeywequzrjzyvlxhph/Index/DataStore -index-system-modules1. Contents of /var/folders/0p/1mcy65n125164bx5wwt7btw80000gp/T/sources-e72541:---/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/LaunchingAndLoginRegister/VerificationViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/Service/Login.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/NoticeDetailViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/DateCustomCell/FromDateContentRow.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Model/DataSource.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/BaseFormViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/View/HeaderViewReusableView.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/PettyCashClaims/Controllers/PrettyCashClaimsDetailController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Tools/UIImageExtension.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Comm/AppUpdateManger.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/TableInline/TableRow.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/search/Cell/FilterFotterCollectionReusableView.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/TableInline/TableInlineRow.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/search/SearchHeader.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/FileCustomCell/CustomBtnRow.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Tools/TimeZone/DateTools.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/AppDelegate.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/JobNumberCell/CollectionViewJobNumberCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/search/FilterSearchView.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/FileCustomCell/ICloudManager/ICloudDocumentModel.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/JobNoCell/JobNoCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/PettyCashClaims/Controllers/PrettyCashClaimsViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/TravellingClaims/Models/JobNo.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/FileCustomCell/Media/UDatePicker.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/TravellingClaims/Views/TravellingClaimsTableViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/View/BaseTabbarButton.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/LaunchingAndLoginRegister/ScrollViewPageView/SecondPageView.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/BaseViewController/BaseViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/Service/UserService.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Setting/SettingViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Comm/ZToolManager.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/TravellingClaims/Controllers/TravellingClaimsViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/LaunchingAndLoginRegister/MessegeViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/FileCustomCell/ICloudManager/ICloudDocumentPickerViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Leave/Cotrollers/LeaveViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Approval/Views/ApprovalLeaveTableViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Model/CompanyAppModel.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/LaunchingAndLoginRegister/ForgetPasswordViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/FileCustomCell/ICloudManager/ICloudManager.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/MainInterfaceViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/View/ProfileTableViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Approval/Views/ApproveMainCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Model/AllAppModel.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Approval/Views/ApprovalPettyTableViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/JobNumberCell/TableViewJobNumberCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Approval/Cotrollers/ApprovalVoidViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Model/GoalModel.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/ImageCell/ImageRow.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/LaunchingAndLoginRegister/LoginViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/UserSettingViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Approval/Cotrollers/ApprovalViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/View/IntranetCollectionViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Overtime/Views/OTTableViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/TravellingClaims/Models/TravellingClaimModel.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/JobNumberCell/JobNumberRow.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Overtime/Models/OverTimeModel.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/View/NotificationTableViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/JobNumberCell/TRCollectionViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/SecurityManager/SecurityManager.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Approval/Views/ApprovalTravelTableViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/CustomCell/SummaryTableViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/search/Cell/FilterHeaderCollectionReusableView.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/ThemeManager.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/WGPopMenu.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Extension/UIViewExtension.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/UIView.SuperView.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/LaunchingAndLoginRegister/ScrollViewPageView/ThirdPageView.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/ChekInOut/CheckInOutTableViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Extension/StringExtension.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/LaunchingAndLoginRegister/WelcomeViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Approval/Cotrollers/ApprovalDetailViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/FileCustomCell/ICloudManager/ICloudFileHelper.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/IntranetViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/FieldCustomCell/RequiredFieldRow.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/HomeViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/FileCustomCell/CustomBtnCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/FieldCustomCell/RequiredFieldCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/LaunchingAndLoginRegister/ScrollViewPageView/FourPageView.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/TravellingClaims/Controllers/TravellingClaimsDetailController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/JobNumberCell/JobNumberCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/Service/LoginModel.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Tools/SwiftQRCode/SwiftQRCodeVC.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/ProfileViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/JobNumberCell/ScanCodeViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/AllViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Extension/UIColorExtension.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/ImageCell/ImageCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Comm/IntranetPrintLog.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/FileCustomCell/FileCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/View/AllAppTableViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/search/Cell/FilterCollectionViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/FileCustomCell/FileRow.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/DateCustomCell/FromDateInlineRow.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/JobNumberCell/TRTableViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/comm/DataShare.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Approval/Cotrollers/FilePreviewViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/JobNoCell/JobNoRow.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/LaunchingAndLoginRegister/LaunchingViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Overtime/Controllers/OTViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/LaunchingAndLogin/LaunchingAndLoginRegister/ScrollViewPageView/FirstPageView.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/SigntureFile/SignatureViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Model/IntranetModel.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/ChekInOut/CheckInOutViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Extension/WGResponseTool.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/DateCustomCell/FromDateContentTableCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/SecurityManager/MD5+String.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Comm/Constant.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Leave/Cotrollers/LeaveDetailViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Leave/Views/LeaveTableViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/User/UserSingleton.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/NoticeViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/BaseViewController/INFormRowDescriptor.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/ImageCell/ImagePickerController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/BaseViewController/BaseNavigationController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Comm/Api.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Approval/Views/ApprovalOTTableViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Tools/Helper.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/PettyCashClaims/Views/PrettyCashClaimsTableViewCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/TableInline/IntrinsicContentSizeTableView.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Approval/Models/AppovalListModel.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/CompanyViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Leave/Models/LeaveAppListModel.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Tools/ARAlamofire.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/View/MainCollectionCell.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/JobNumberCell/String+JobNumberRow.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/protocol/DataSourceProtocol.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Comm/Alamofire.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/PettyCashClaims/Models/PettyClaimModel.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/search/JXPopupView.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Overtime/Controllers/EditOTViewController.swift/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/Main/Controller/Approval/Cotrollers/ApprovalRejectViewController.swift---2. While type-checking 'TableInlineRow' (at /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/TableInline/TableInlineRow.swift:61:14)3. While type-checking 'setupInlineRow(_:)' (at /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/TableInline/TableInlineRow.swift:88:21)4. While validating 'setupInlineRow(_:)' (at /Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/TableInline/TableInlineRow.swift:88:21)5. While resolving type InlineRow at [/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/TableInline/TableInlineRow.swift:88:54 - line:88:54] RangeText=""6. While resolving requirement Eureka.(file).InlineRowType.InlineRow in conformance &lt;T where T : Equatable&gt; TableInlineRow&lt;T&gt;: InlineRowType module Intranet_innoways_dev7. While evaluating request OverriddenDeclsRequest(Intranet_innoways_dev.(file).TableInlineRow.setupInlineRow@/Users/IOSDev/Documents/SourceTree/Intranet_New_App/Intranet/Intranet/CustomerCell/TableInline/TableInlineRow.swift:88:26)0 swift 0x0000000111159a13 PrintStackTraceSignalHandler(void*) + 511 swift 0x00000001111591e6 SignalHandler(int) + 3582 libsystem_platform.dylib 0x00007fff74385b5d _sigtramp + 293 libsystem_platform.dylib 0x0000000000000001 _sigtramp + 23451168654 swift 0x000000010d919eda (anonymous namespace)::OverrideMatcher::match((anonymous namespace)::OverrideCheckingAttempt) + 4905 swift 0x000000010d9849d0 swift::SimpleRequest&lt;swift::OverriddenDeclsRequest, (swift::CacheKind)2, llvm::TinyPtrVector&lt;swift::ValueDecl*&gt;, swift::ValueDecl*&gt;::evaluateRequest(swift::OverriddenDeclsRequest const&amp;, swift::Evaluator&amp;) + 18086 swift 0x000000010d8f1359 llvm::Expected&lt;swift::OverriddenDeclsRequest::OutputType&gt; swift::Evaluator::getResultUncached&lt;swift::OverriddenDeclsRequest&gt;(swift::OverriddenDeclsRequest const&amp;) + 5217 swift 0x000000010d8f0feb llvm::Expected&lt;swift::OverriddenDeclsRequest::OutputType&gt; swift::Evaluator::getResultCached&lt;swift::OverriddenDeclsRequest, (void*)0&gt;(swift::OverriddenDeclsRequest const&amp;) + 2838 swift 0x000000010d8f0aa9 llvm::Expected&lt;swift::OverriddenDeclsRequest::OutputType&gt; swift::Evaluator::operator()&lt;swift::OverriddenDeclsRequest&gt;(swift::OverriddenDeclsRequest const&amp;) + 1059 swift 0x000000010d8f0898 swift::OverriddenDeclsRequest::OutputType swift::evaluateOrDefault&lt;swift::OverriddenDeclsRequest&gt;(swift::Evaluator&amp;, swift::OverriddenDeclsRequest, swift::OverriddenDeclsRequest::OutputType) + 4010 swift 0x000000010dc8e2ea swift::ValueDecl::getOverriddenDecl() const + 10611 swift 0x000000010dd24af8 swift::removeOverriddenDecls(llvm::SmallVectorImpl&lt;swift::ValueDecl*&gt;&amp;) + 60012 swift 0x000000010d9364ba (anonymous namespace)::LookupResultBuilder::~LookupResultBuilder() + 4213 swift 0x000000010d937a8f swift::TypeChecker::lookupMember(swift::DeclContext*, swift::Type, swift::DeclName, swift::OptionSet&lt;swift::NameLookupFlags, unsigned int&gt;) + 46314 swift 0x000000010d94b869 swift::WitnessChecker::lookupValueWitnesses(swift::ValueDecl*, bool*) + 8915 swift 0x000000010d9742d6 swift::AssociatedTypeInference::inferTypeWitnessesViaValueWitnesses(swift::ConformanceChecker&amp;, llvm::SetVector&lt;swift::AssociatedTypeDecl*, std::__1::vector&lt;swift::AssociatedTypeDecl*, std::__1::allocator&lt;swift::AssociatedTypeDecl*&gt; &gt;, llvm::DenseSet&lt;swift::AssociatedTypeDecl*, llvm::DenseMapInfo&lt;swift::AssociatedTypeDecl*&gt; &gt; &gt; const&amp;) + 269416 swift 0x000000010d97e33e swift::AssociatedTypeInference::solve(swift::ConformanceChecker&amp;) + 78217 swift 0x000000010d98014f swift::ConformanceChecker::resolveTypeWitnesses() + 25518 swift 0x000000010d96c7dd swift::TypeChecker::resolveTypeWitness(swift::NormalProtocolConformance const*, swift::AssociatedTypeDecl*) + 33319 swift 0x000000010dd3bb60 swift::NormalProtocolConformance::getTypeWitnessAndDecl(swift::AssociatedTypeDecl*, swift::LazyResolver*, swift::SubstOptions) const + 60820 swift 0x000000010dd3b1fe swift::ProtocolConformance::getTypeWitnessAndDecl(swift::AssociatedTypeDecl*, swift::LazyResolver*, swift::SubstOptions) const + 28621 swift 0x000000010dd4dac6 getMemberForBaseType(llvm::function_ref&lt;llvm::Optional&lt;swift::ProtocolConformanceRef&gt; (swift::CanType, swift::Type, swift::ProtocolDecl*)&gt;, swift::Type, swift::Type, swift::AssociatedTypeDecl*, swift::Identifier, swift::SubstOptions) + 146222 swift 0x000000010dd4d2ff llvm::Optional&lt;swift::Type&gt; llvm::function_ref&lt;llvm::Optional&lt;swift::Type&gt; (swift::TypeBase*)&gt;::callback_fn&lt;substType(swift::Type, llvm::function_ref&lt;swift::Type (swift::SubstitutableType*)&gt;, llvm::function_ref&lt;llvm::Optional&lt;swift::ProtocolConformanceRef&gt; (swift::CanType, swift::Type, swift::ProtocolDecl*)&gt;, swift::SubstOptions)::$_17&gt;(long, swift::TypeBase*) + 75123 swift 0x000000010dd49fa1 swift::Type::transformRec(llvm::function_ref&lt;llvm::Optional&lt;swift::Type&gt; (swift::TypeBase*)&gt;) const + 4924 swift 0x000000010dd4c487 substType(swift::Type, llvm::function_ref&lt;swift::Type (swift::SubstitutableType*)&gt;, llvm::function_ref&lt;llvm::Optional&lt;swift::ProtocolConformanceRef&gt; (swift::CanType, swift::Type, swift::ProtocolDecl*)&gt;, swift::SubstOptions) + 29525 swift 0x000000010d9a5e04 swift::TypeChecker::substMemberTypeWithBase(swift::ModuleDecl*, swift::TypeDecl*, swift::Type, bool) + 155626 swift 0x000000010d9b0f15 resolveTypeDecl(swift::TypeDecl*, swift::SourceLoc, swift::DeclContext*, swift::TypeResolution, swift::GenericIdentTypeRepr*, swift::TypeResolutionOptions) + 26127 swift 0x000000010d9af81e resolveIdentTypeComponent(swift::TypeResolution, llvm::ArrayRef&lt;swift::ComponentIdentTypeRepr*&gt;, swift::TypeResolutionOptions) + 143828 swift 0x000000010d9acb15 swift::TypeChecker::resolveIdentifierType(swift::TypeResolution, swift::IdentTypeRepr*, swift::TypeResolutionOptions) + 21329 swift 0x000000010d9a8b04 (anonymous namespace)::TypeResolver::resolveType(swift::TypeRepr*, swift::TypeResolutionOptions) + 29230 swift 0x000000010d9a800d swift::TypeResolution::resolveType(swift::TypeRepr*, swift::TypeResolutionOptions) + 41331 swift 0x000000010d9b3562 swift::TypeChecker::validateType(swift::TypeLoc&amp;, swift::TypeResolution, swift::TypeResolutionOptions) + 14632 swift 0x000000010d93dd57 validateParameterType(swift::ParamDecl*, swift::TypeResolution, swift::TypeResolutionOptions, swift::TypeChecker&amp;) + 13533 swift 0x000000010d93d8d5 swift::TypeChecker::typeCheckParameterList(swift::ParameterList*, swift::TypeResolution, swift::TypeResolutionOptions) + 18134 swift 0x000000010d92f97d swift::TypeChecker::validateGenericFuncSignature(swift::AbstractFunctionDecl*) + 398135 swift 0x000000010d8fdbe8 swift::TypeChecker::validateDecl(swift::ValueDecl*) + 799236 swift 0x000000010d900a90 (anonymous namespace)::DeclChecker::visitFuncDecl(swift::FuncDecl*) + 4837 swift 0x000000010d8f4d05 (anonymous namespace)::DeclChecker::visit(swift::Decl*) + 27738 swift 0x000000010d8f51cb (anonymous namespace)::DeclChecker::visit(swift::Decl*) + 149939 swift 0x000000010d9b52e6 swift::performTypeChecking(swift::SourceFile&amp;, swift::TopLevelContext&amp;, swift::OptionSet&lt;swift::TypeCheckingFlags, unsigned int&gt;, unsigned int, unsigned int, unsigned int, unsigned int, unsigned int) + 170240 swift 0x000000010d0a8bdb swift::CompilerInstance::parseAndCheckTypesUpTo(swift::CompilerInstance::ImplicitImports const&amp;, swift::SourceFile::ASTStage_t)::$_0::operator()(swift::SourceFile&amp;) const + 9141 swift 0x000000010d0a793b swift::CompilerInstance::performSemaUpTo(swift::SourceFile::ASTStage_t) + 537142 swift 0x000000010cd9d216 performCompile(swift::CompilerInstance&amp;, swift::CompilerInvocation&amp;, llvm::ArrayRef&lt;char const*&gt;, int&amp;, swift::FrontendObserver*, swift::UnifiedStatsReporter*) + 80643 swift 0x000000010cd996e4 swift::performFrontend(llvm::ArrayRef&lt;char const*&gt;, char const*, void*, swift::FrontendObserver*) + 682044 swift 0x000000010cd26be3 main + 121945 libdyld.dylib 0x00007fff7419a3d5 start + 1error: Segmentation fault: 11 (in target 'Intranet_innoways_dev' from project 'Intranet')Please help me out I am getting tired to solve this error
Replies
2
Boosts
0
Views
2.9k
Activity
Nov ’22
Canonical, up-to-date documentation of Apple's assembler ?
I'm trying to get hold of a reliable documentation for the Apple assember ('as'), especially for the M1/M2 ARM architecture, but I suspect it's similar for x86 as well. I found outdated links here: https://developer.apple.com/library/archive/documentation/DeveloperTools/Reference/Assembler/000-Introduction/introduction.html But the new documentation site for Xcode (I assume this is where I would have to look) does not seem to have assembler documentation. It's possible that apple uses the clang-llvm assembler, but it would then be nice to have an authoritative pointer to that documentation. Web searches seem futile for this subject :( Thanks for any pointers.
Replies
4
Boosts
1
Views
1.6k
Activity
Oct ’22
xcframework: how to wrap a static library?
This topic was touched on in the notes for the WWDC 2019 session on Binary Frameworks - I even watched the whole video but it wasn't covered there.It appears I should be able to wrap a static library - one that is created by its own (complex) build scripts - and have iOS, iOS Simulator and macOS versions. Also, that the header files can be included as well.I have been unable to find any information googling around on how one might do this. I would greatly appreciate any pointers to some blog/post that covers this.Thanks!
Replies
9
Boosts
1
Views
16k
Activity
Oct ’22
How to stop updating Command Line Tools
Hi, I have some code that relies on CLT for Xcode 13.4. After MacOS pushed the update to CLT for Xcode 14, my compilation routine broke and it took some time to realise that it was due to this recent update. I managed to downgrade CLT to the previous version, but I had to disable automatic updates to avoid the new version being installed again. So the question is, is it possible to stop updates to CLT for Xcode 13.4? Alternatively, is there a way to install two versions of CLT in two separate folders and then use xcode-select -s for the one I need? Thanks! I assume yes (why would we have the option -s then), but I could not find a way to have two different folders though.
Replies
2
Boosts
0
Views
2.0k
Activity
Sep ’22
Is special meaning of C statements inside of Objective-C class sections documented anywhere?
There are quite a few features a C function acquires when defined inside of the @implementation block of an Objective-C class, e.g. it can be accessed before declared: @implementation TDWClass - (void)method { bar(); // the function is accessible here despite not being declared in the code before } void bar(void) { NSLog(@"Test"); } @end Plus it is granted access to the private ivars of the class: @implementation TDWClass { @private int _var; } - (void)foo { bar(self); } void bar(TDWClass *self) { self->_var += 2; // a private instance variable accessed } @end Some sources also say that static variables inside of @implementantion section had special meaning (unlike C static they were private to the enclosing class, not the compilation unit), however I could not reproduce this on my end. Having that said, almost all such features were either deduced or found on third-party sources. I wonder if anything like that is/had ever been documented anywhere, so i can read through full list or special meanings of C statements inside of Objective-C class sections?
Replies
1
Boosts
1
Views
1.2k
Activity
Sep ’22
ld: library not found for -lstdc++fs
make command is failing with the below mentioned lines. Can someone please help me with this? Thanks! ld: library not found for -lstdc++fs clang: error: linker command failed with exit code 1 (use -v to see invocation) Below are the list of gcc and clang versions. Target: x86_64-apple-darwin21.6.0 Thread model: posix InstalledDir: /Library/Developer/CommandLineTools/usr/bin (base) rmagesh@Mageshs-MacBook-Pro src % gcc -v Apple clang version 14.0.0 (clang-1400.0.29.102) Target: x86_64-apple-darwin21.6.0 Thread model: posix InstalledDir: /Library/Developer/CommandLineTools/usr/bin (base) rmagesh@Mageshs-MacBook-Pro src % clang++ -c clang: error: no input files (base) rmagesh@Mageshs-MacBook-Pro src % clang++ -v Apple clang version 14.0.0 (clang-1400.0.29.102) Target: x86_64-apple-darwin21.6.0 Thread model: posix InstalledDir: /Library/Developer/CommandLineTools/usr/bin (base) rmagesh@Mageshs-MacBook-Pro src % clang -v Apple clang version 14.0.0 (clang-1400.0.29.102) Target: x86_64-apple-darwin21.6.0 Thread model: posix InstalledDir: /Library/Developer/CommandLineTools/usr/bin (base) rmagesh@Mageshs-MacBook-Pro src % `
Replies
1
Boosts
0
Views
2.6k
Activity
Sep ’22
Tensorflow on Apple M1 cannot import
Hi, OS: macOS 12.4 CPU: Apple M1 I cannot import the new TensorFlow 2.9.0 on Apple M1. I got an error: --------------------------------------------------------------------------- TypeError Traceback (most recent call last) /Users/martin/Documents/Projects/Solar-Transformer/Testing.ipynb Cell 3' in <cell line: 1>() ----> 1 from tensorflow.keras.layers import Add, Dense, Dropout, Layer, LayerNormalization, MultiHeadAttention, Normalization 2 from tensorflow.keras.models import Model 3 from tensorflow.keras.initializers import TruncatedNormal File ~/miniforge3/lib/python3.9/site-packages/tensorflow/__init__.py:37, in <module> 34 import sys as _sys 35 import typing as _typing ---> 37 from tensorflow.python.tools import module_util as _module_util 38 from tensorflow.python.util.lazy_loader import LazyLoader as _LazyLoader 40 # Make sure code inside the TensorFlow codebase can use tf2.enabled() at import. File ~/miniforge3/lib/python3.9/site-packages/tensorflow/python/__init__.py:42, in <module> 37 from tensorflow.python.eager import context 39 # pylint: enable=wildcard-import 40 41 # Bring in subpackages. ---> 42 from tensorflow.python import data 43 from tensorflow.python import distribute 44 # from tensorflow.python import keras File ~/miniforge3/lib/python3.9/site-packages/tensorflow/python/data/__init__.py:21, in <module> 15 """`tf.data.Dataset` API for input pipelines. 16 17 See [Importing Data](https://tensorflow.org/guide/data) for an overview. 18 """ 20 # pylint: disable=unused-import ---> 21 from tensorflow.python.data import experimental 22 from tensorflow.python.data.ops.dataset_ops import AUTOTUNE 23 from tensorflow.python.data.ops.dataset_ops import Dataset File ~/miniforge3/lib/python3.9/site-packages/tensorflow/python/data/util/structure.py:22, in <module> 19 import six 20 import wrapt ---> 22 from tensorflow.python.data.util import nest 23 from tensorflow.python.framework import composite_tensor 24 from tensorflow.python.framework import ops File ~/miniforge3/lib/python3.9/site-packages/tensorflow/python/data/util/nest.py:36, in <module> 16 """## Functions for working with arbitrarily nested sequences of elements. 17 18 NOTE(mrry): This fork of the `tensorflow.python.util.nest` module (...) 31 arrays. 32 """ 34 import six as _six ---> 36 from tensorflow.python.framework import sparse_tensor as _sparse_tensor 37 from tensorflow.python.util import _pywrap_utils 38 from tensorflow.python.util import nest File ~/miniforge3/lib/python3.9/site-packages/tensorflow/python/framework/sparse_tensor.py:24, in <module> 22 from tensorflow.python import tf2 23 from tensorflow.python.framework import composite_tensor ---> 24 from tensorflow.python.framework import constant_op 25 from tensorflow.python.framework import dtypes 26 from tensorflow.python.framework import ops File ~/miniforge3/lib/python3.9/site-packages/tensorflow/python/framework/constant_op.py:25, in <module> 23 from tensorflow.core.framework import types_pb2 24 from tensorflow.python.eager import context ---> 25 from tensorflow.python.eager import execute 26 from tensorflow.python.framework import dtypes 27 from tensorflow.python.framework import op_callbacks File ~/miniforge3/lib/python3.9/site-packages/tensorflow/python/eager/execute.py:23, in <module> 21 from tensorflow.python import pywrap_tfe 22 from tensorflow.python.eager import core ---> 23 from tensorflow.python.framework import dtypes 24 from tensorflow.python.framework import ops 25 from tensorflow.python.framework import tensor_shape File ~/miniforge3/lib/python3.9/site-packages/tensorflow/python/framework/dtypes.py:29, in <module> 26 from tensorflow.python.lib.core import _pywrap_bfloat16 27 from tensorflow.python.util.tf_export import tf_export ---> 29 _np_bfloat16 = _pywrap_bfloat16.TF_bfloat16_type() 32 @tf_export("dtypes.DType", "DType") 33 class DType(_dtypes.DType): 34 """Represents the type of the elements in a `Tensor`. 35 36 `DType`'s are used to specify the output data type for operations which (...) 46 See `tf.dtypes` for a complete list of `DType`'s defined. 47 """ Example code: from tensorflow.keras.layers import Add, Dense, Dropout, Layer, LayerNormalization, MultiHeadAttention, Normalization from tensorflow.keras.models import Model from tensorflow.keras.initializers import TruncatedNormal from tensorflow.keras.utils import timeseries_dataset_from_array import tensorflow as tf import tensorflow_probability as tfp import numpy as np
Replies
2
Boosts
0
Views
3.2k
Activity
Sep ’22
Xcode 14 beta: NSString function does not return string type
I downloaded xcode 14 beta to look into the iOS 16 issue and now im seeing this compiler issue about NSString. Just by importing a UIKit onto a Objective C++ code gives me this error, not just one file. Any tips to fix this?
Replies
2
Boosts
1
Views
2.5k
Activity
Sep ’22
All Objective-C++ code breaks when setting C++20
I'm trying to update all my projects to C++20. The C++ only projects work fine. All the Objective-C++ files, though, suddenly stop compiling. Is this supposed to work. I can't imagine [NSString stringWithUTF8String:foo] should be failing. Setting the project back to C++17 works. I do have -fmodules and -fcxx-modules for clang modules in some projects. Do those all need to be removed for C++20 modules?
Replies
4
Boosts
0
Views
2.0k
Activity
Sep ’22
Disable "Pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)" warning
Hi, Is it possible to disable thePointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)Warning in Xcode?I tried using-Wno-nullability-completenessbut to no effect
Replies
1
Boosts
0
Views
4.0k
Activity
Sep ’22