├── .gitignore ├── ExampleLogs ├── BasicOSX.txt ├── ExampleCpp.txt └── MessySwiftLog.txt ├── Makefile ├── Package.swift ├── README.md ├── Sources ├── XcodeCompilationDatabase │ └── main.swift └── XcodeCompilationDatabaseCore │ └── XcodeCompilationDatabase.swift ├── Tests └── XcodeCompilationDatabaseTests │ └── LogParsingTests.swift └── install.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | *xcuserdata 3 | *xcworkspacedata 4 | build 5 | compile_commands.json 6 | .build 7 | -------------------------------------------------------------------------------- /ExampleLogs/BasicOSX.txt: -------------------------------------------------------------------------------- 1 | 2-Xcc -working-directory/Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX018-06-30 08:43:58.974 xcodebuild[27129:5232875] [MT] DVTToolchain: Failed to load toolchain: : Error Domain=DVTToolchainErrorDomain Code=6 "Info.plist:OverrideBuildSettings:{SWIFT_LINK_OBJC_RUNTIME,SWIFT_DISABLE_REQUIRED_ARCLITE,ENABLE_BITCODE} must contain a string or array of strings" UserInfo={NSFilePath=/Library/Developer/Toolchains/swift-DEVELOPMENT-SNAPSHOT-2016-05-03-a.xctoolchain, NSLocalizedDescription=Info.plist:OverrideBuildSettings:{SWIFT_LINK_OBJC_RUNTIME,SWIFT_DISABLE_REQUIRED_ARCLITE,ENABLE_BITCODE} must contain a string or array of strings} 2 | 2018-06-30 08:43:59.278 xcodebuild[27129:5232875] [MT] PluginLoading: Required plug-in compatibility UUID 426A087B-D3AA-431A-AFDF-F135EC00DE1C for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/Refactorator.xcplugin' not present in DVTPlugInCompatibilityUUIDs 3 | 2018-06-30 08:43:59.279 xcodebuild[27129:5232875] [MT] PluginLoading: Required plug-in compatibility UUID 426A087B-D3AA-431A-AFDF-F135EC00DE1C for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/Alcatraz.xcplugin' not present in DVTPlugInCompatibilityUUIDs 4 | === BUILD TARGET BasicOSX OF PROJECT BasicOSX WITH CONFIGURATION Debug === 5 | 6 | Check dependencies 7 | 8 | Write auxiliary files 9 | write-file /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/BasicOSX-all-non-framework-target-headers.hmap 10 | /bin/mkdir -p /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64 11 | write-file /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/BasicOSX-OutputFileMap.json 12 | write-file /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/BasicOSX.LinkFileList 13 | write-file /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/BasicOSX-project-headers.hmap 14 | write-file /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Script-1017BB0F1ED90EA700A52952.sh 15 | chmod 0755 /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Script-1017BB0F1ED90EA700A52952.sh 16 | write-file /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/BasicOSX-all-target-headers.hmap 17 | write-file /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/BasicOSX.hmap 18 | write-file /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/swift-overrides.hmap 19 | write-file /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/BasicOSX-own-target-headers.hmap 20 | write-file /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/BasicOSX-generated-files.hmap 21 | 22 | Create product structure 23 | /bin/mkdir -p /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents 24 | /bin/mkdir -p /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/MacOS 25 | /bin/mkdir -p /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Resources 26 | 27 | CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler 28 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX 29 | export DEVELOPER_DIR=/Applications/Xcode-9.4.app/Contents/Developer 30 | export SDKROOT=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk 31 | /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -incremental -module-name BasicOSX -Onone -enforce-exclusivity=checked -DDEBUG -sdk /Applications/Xcode-9.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -target x86_64-apple-macosx10.12 -g -module-cache-path /Users/jerrymarino/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Index/DataStore -swift-version 3 -I /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug -F /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug -c -j8 /Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX/BasicOSX/ViewController.swift /Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX/BasicOSX/AppDelegate.swift -output-file-map /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/BasicOSX-OutputFileMap.json -parseable-output -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/BasicOSX.swiftmodule -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/BasicOSX-generated-files.hmap -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/BasicOSX-own-target-headers.hmap -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/BasicOSX-all-target-headers.hmap -Xcc -iquote -Xcc /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/BasicOSX-project-headers.hmap -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/include -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/DerivedSources/x86_64 -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/DerivedSources -Xcc -DDEBUG=1 -emit-objc-header -emit-objc-header-path /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/BasicOSX-Swift.h -Xcc -working-directory/Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX 32 | 33 | CompileSwift normal x86_64 /Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX/BasicOSX/ViewController.swift 34 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX 35 | /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -c -primary-file /Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX/BasicOSX/ViewController.swift /Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX/BasicOSX/AppDelegate.swift -target x86_64-apple-macosx10.12 -enable-objc-interop -sdk /Applications/Xcode-9.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -I /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug -F /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug -enable-testing -g -module-cache-path /Users/jerrymarino/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 3 -enforce-exclusivity=checked -Onone -D DEBUG -serialize-debugging-options -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/BasicOSX-generated-files.hmap -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/BasicOSX-own-target-headers.hmap -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/BasicOSX-all-target-headers.hmap -Xcc -iquote -Xcc /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/BasicOSX-project-headers.hmap -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/include -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/DerivedSources/x86_64 -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/DerivedSources -Xcc -DDEBUG=1 -Xcc -working-directory/Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX -emit-module-doc-path /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/ViewController~partial.swiftdoc -serialize-diagnostics-path /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/ViewController.dia -module-name BasicOSX -emit-module-path /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/ViewController~partial.swiftmodule -emit-dependencies-path /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/ViewController.d -emit-reference-dependencies-path /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/ViewController.swiftdeps -o /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/ViewController.o -index-store-path /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Index/DataStore -index-system-modules 36 | 37 | CompileSwift normal x86_64 /Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX/BasicOSX/AppDelegate.swift 38 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX 39 | /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -c /Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX/BasicOSX/ViewController.swift -primary-file /Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX/BasicOSX/AppDelegate.swift -target x86_64-apple-macosx10.12 -enable-objc-interop -sdk /Applications/Xcode-9.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -I /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug -F /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug -enable-testing -g -module-cache-path /Users/jerrymarino/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 3 -enforce-exclusivity=checked -Onone -D DEBUG -serialize-debugging-options -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/BasicOSX-generated-files.hmap -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/BasicOSX-own-target-headers.hmap -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/BasicOSX-all-target-headers.hmap -Xcc -iquote -Xcc /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/BasicOSX-project-headers.hmap -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/include -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/DerivedSources/x86_64 -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/DerivedSources -Xcc -DDEBUG=1 -Xcc -working-directory/Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX -emit-module-doc-path /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/AppDelegate~partial.swiftdoc -serialize-diagnostics-path /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/AppDelegate.dia -module-name BasicOSX -emit-module-path /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/AppDelegate~partial.swiftmodule -emit-dependencies-path /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/AppDelegate.d -emit-reference-dependencies-path /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/AppDelegate.swiftdeps -o /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/AppDelegate.o -index-store-path /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Index/DataStore -index-system-modules 40 | 41 | MergeSwiftModule normal x86_64 /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/BasicOSX.swiftmodule 42 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX 43 | /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -merge-modules -emit-module /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/ViewController~partial.swiftmodule /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/AppDelegate~partial.swiftmodule -parse-as-library -sil-merge-partial-modules -disable-diagnostic-passes -disable-sil-perf-optzns -target x86_64-apple-macosx10.12 -enable-objc-interop -sdk /Applications/Xcode-9.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -I /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug -F /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug -enable-testing -g -module-cache-path /Users/jerrymarino/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 3 -enforce-exclusivity=checked -Onone -D DEBUG -serialize-debugging-options -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/BasicOSX-generated-files.hmap -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/BasicOSX-own-target-headers.hmap -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/BasicOSX-all-target-headers.hmap -Xcc -iquote -Xcc /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/BasicOSX-project-headers.hmap -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/include -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/DerivedSources/x86_64 -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/DerivedSources -Xcc -DDEBUG=1 -Xcc -working-directory/Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX -emit-module-doc-path /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/BasicOSX.swiftdoc -module-name BasicOSX -emit-objc-header-path /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/BasicOSX-Swift.h -o /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/BasicOSX.swiftmodule 44 | 45 | Ditto /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/DerivedSources/BasicOSX-Swift.h /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/BasicOSX-Swift.h 46 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX 47 | /usr/bin/ditto -rsrc /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/BasicOSX-Swift.h /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/DerivedSources/BasicOSX-Swift.h 48 | 49 | Ld /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/MacOS/BasicOSX normal x86_64 50 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX 51 | export MACOSX_DEPLOYMENT_TARGET=10.12 52 | /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode-9.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -L/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug -F/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug -filelist /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/BasicOSX.LinkFileList -Xlinker -rpath -Xlinker @executable_path/../Frameworks -mmacosx-version-min=10.12 -Xlinker -object_path_lto -Xlinker /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/BasicOSX_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -Xlinker -add_ast_path -Xlinker /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/BasicOSX.swiftmodule -Xlinker -dependency_info -Xlinker /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/BasicOSX_dependency_info.dat -o /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/MacOS/BasicOSX 53 | 54 | Ditto /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.swiftmodule/x86_64.swiftmodule /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/BasicOSX.swiftmodule 55 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX 56 | /usr/bin/ditto -rsrc /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/BasicOSX.swiftmodule /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.swiftmodule/x86_64.swiftmodule 57 | 58 | Ditto /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.swiftmodule/x86_64.swiftdoc /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/BasicOSX.swiftdoc 59 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX 60 | /usr/bin/ditto -rsrc /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/BasicOSX.swiftdoc /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.swiftmodule/x86_64.swiftdoc 61 | 62 | CompileAssetCatalog /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Resources BasicOSX/Assets.xcassets 63 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX 64 | /Applications/Xcode-9.4.app/Contents/Developer/usr/bin/actool --output-format human-readable-text --notices --warnings --export-dependency-info /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/assetcatalog_dependencies --output-partial-info-plist /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/assetcatalog_generated_info.plist --app-icon AppIcon --enable-on-demand-resources NO --sticker-pack-identifier-prefix ssvim.BasicOSX.sticker-pack. --target-device mac --minimum-deployment-target 10.12 --platform macosx --product-type com.apple.product-type.application --compile /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Resources /Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX/BasicOSX/Assets.xcassets 65 | /* com.apple.actool.compilation-results */ 66 | /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/assetcatalog_generated_info.plist 67 | 68 | 69 | CompileStoryboard BasicOSX/Base.lproj/Main.storyboard 70 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX 71 | export XCODE_DEVELOPER_USR_PATH=/Applications/Xcode-9.4.app/Contents/Developer/usr/bin/.. 72 | /Applications/Xcode-9.4.app/Contents/Developer/usr/bin/ibtool --errors --warnings --notices --module BasicOSX --output-partial-info-plist /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Main-SBPartialInfo.plist --auto-activate-custom-fonts --target-device mac --minimum-deployment-target 10.12 --output-format human-readable-text --compilation-directory /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Base.lproj /Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX/BasicOSX/Base.lproj/Main.storyboard 73 | 74 | ProcessInfoPlistFile /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Info.plist BasicOSX/Info.plist 75 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX 76 | builtin-infoPlistUtility /Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX/BasicOSX/Info.plist -genpkginfo /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/PkgInfo -expandbuildsettings -platform macosx -additionalcontentfile /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/assetcatalog_generated_info.plist -additionalcontentfile /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Main-SBPartialInfo.plist -o /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Info.plist 77 | 78 | LinkStoryboards 79 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX 80 | export XCODE_DEVELOPER_USR_PATH=/Applications/Xcode-9.4.app/Contents/Developer/usr/bin/.. 81 | /Applications/Xcode-9.4.app/Contents/Developer/usr/bin/ibtool --errors --warnings --notices --module BasicOSX --target-device mac --minimum-deployment-target 10.12 --output-format human-readable-text --link /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Resources /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Base.lproj/Main.storyboardc 82 | 83 | PhaseScriptExecution Run\ Script /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Script-1017BB0F1ED90EA700A52952.sh 84 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX 85 | export ACTION=build 86 | export ALTERNATE_GROUP=staff 87 | export ALTERNATE_MODE=u+w,go-w,a+rX 88 | export ALTERNATE_OWNER=jerrymarino 89 | export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO 90 | export ALWAYS_SEARCH_USER_PATHS=NO 91 | export ALWAYS_USE_SEPARATE_HEADERMAPS=NO 92 | export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer 93 | export APPLE_INTERNAL_DIR=/AppleInternal 94 | export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation 95 | export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library 96 | export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools 97 | export APPLICATION_EXTENSION_API_ONLY=NO 98 | export APPLY_RULES_IN_COPY_FILES=NO 99 | export ARCHS=x86_64 100 | export ARCHS_STANDARD=x86_64 101 | export ARCHS_STANDARD_32_64_BIT="x86_64 i386" 102 | export ARCHS_STANDARD_32_BIT=i386 103 | export ARCHS_STANDARD_64_BIT=x86_64 104 | export ARCHS_STANDARD_INCLUDING_64_BIT=x86_64 105 | export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon 106 | export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator" 107 | export BITCODE_GENERATION_MODE=marker 108 | export BUILD_ACTIVE_RESOURCES_ONLY=NO 109 | export BUILD_COMPONENTS="headers build" 110 | export BUILD_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products 111 | export BUILD_ROOT=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products 112 | export BUILD_STYLE= 113 | export BUILD_VARIANTS=normal 114 | export BUILT_PRODUCTS_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug 115 | export CACHE_ROOT=/var/folders/x3/p1grs9_x7cd5m4dkpp33mw2m0000gn/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode 116 | export CCHROOT=/var/folders/x3/p1grs9_x7cd5m4dkpp33mw2m0000gn/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode 117 | export CHMOD=/bin/chmod 118 | export CHOWN=/usr/sbin/chown 119 | export CLANG_ANALYZER_NONNULL=YES 120 | export CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION=YES_AGGRESSIVE 121 | export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x 122 | export CLANG_CXX_LIBRARY=libc++ 123 | export CLANG_ENABLE_MODULES=YES 124 | export CLANG_ENABLE_OBJC_ARC=YES 125 | export CLANG_MODULES_BUILD_SESSION_FILE=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation 126 | export CLANG_WARN_BOOL_CONVERSION=YES 127 | export CLANG_WARN_CONSTANT_CONVERSION=YES 128 | export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR 129 | export CLANG_WARN_DOCUMENTATION_COMMENTS=YES 130 | export CLANG_WARN_EMPTY_BODY=YES 131 | export CLANG_WARN_ENUM_CONVERSION=YES 132 | export CLANG_WARN_INFINITE_RECURSION=YES 133 | export CLANG_WARN_INT_CONVERSION=YES 134 | export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR 135 | export CLANG_WARN_SUSPICIOUS_MOVE=YES 136 | export CLANG_WARN_UNREACHABLE_CODE=YES 137 | export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES 138 | export CLASS_FILE_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/JavaClasses 139 | export CLEAN_PRECOMPS=YES 140 | export CLONE_HEADERS=NO 141 | export CODESIGNING_FOLDER_PATH=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app 142 | export CODE_SIGNING_ALLOWED=YES 143 | export CODE_SIGN_IDENTITY=- 144 | export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES 145 | export COLOR_DIAGNOSTICS=YES 146 | export COMBINE_HIDPI_IMAGES=YES 147 | export COMMAND_MODE=legacy 148 | export COMPILER_INDEX_STORE_ENABLE=Default 149 | export COMPOSITE_SDK_DIRS=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/CompositeSDKs 150 | export COMPRESS_PNG_FILES=NO 151 | export CONFIGURATION=Debug 152 | export CONFIGURATION_BUILD_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug 153 | export CONFIGURATION_TEMP_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug 154 | export CONTENTS_FOLDER_PATH=BasicOSX.app/Contents 155 | export COPYING_PRESERVES_HFS_DATA=NO 156 | export COPY_HEADERS_RUN_UNIFDEF=NO 157 | export COPY_PHASE_STRIP=NO 158 | export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES 159 | export CP=/bin/cp 160 | export CREATE_INFOPLIST_SECTION_IN_BINARY=NO 161 | export CURRENT_ARCH=x86_64 162 | export CURRENT_VARIANT=normal 163 | export DEAD_CODE_STRIPPING=NO 164 | export DEBUGGING_SYMBOLS=YES 165 | export DEBUG_INFORMATION_FORMAT=dwarf 166 | export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0 167 | export DEFAULT_KEXT_INSTALL_PATH=/Library/Extensions 168 | export DEFINES_MODULE=NO 169 | export DEPLOYMENT_LOCATION=NO 170 | export DEPLOYMENT_POSTPROCESSING=NO 171 | export DEPLOYMENT_TARGET_CLANG_ENV_NAME=MACOSX_DEPLOYMENT_TARGET 172 | export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mmacosx-version-min 173 | export DEPLOYMENT_TARGET_SETTING_NAME=MACOSX_DEPLOYMENT_TARGET 174 | export DERIVED_FILES_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/DerivedSources 175 | export DERIVED_FILE_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/DerivedSources 176 | export DERIVED_SOURCES_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/DerivedSources 177 | export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Applications 178 | export DEVELOPER_BIN_DIR=/Applications/Xcode-9.4.app/Contents/Developer/usr/bin 179 | export DEVELOPER_DIR=/Applications/Xcode-9.4.app/Contents/Developer 180 | export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Library/Frameworks 181 | export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode-9.4.app/Contents/Developer/Library/Frameworks 182 | export DEVELOPER_LIBRARY_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Library 183 | export DEVELOPER_SDK_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs 184 | export DEVELOPER_TOOLS_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Tools 185 | export DEVELOPER_USR_DIR=/Applications/Xcode-9.4.app/Contents/Developer/usr 186 | export DEVELOPMENT_LANGUAGE=English 187 | export DOCUMENTATION_FOLDER_PATH=BasicOSX.app/Contents/Resources/English.lproj/Documentation 188 | export DO_HEADER_SCANNING_IN_JAM=NO 189 | export DSTROOT=/tmp/BasicOSX.dst 190 | export DT_TOOLCHAIN_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain 191 | export DWARF_DSYM_FILE_NAME=BasicOSX.app.dSYM 192 | export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO 193 | export DWARF_DSYM_FOLDER_PATH=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug 194 | export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO 195 | export EMBEDDED_PROFILE_NAME=embedded.provisionprofile 196 | export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO 197 | export ENABLE_BITCODE=NO 198 | export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES 199 | export ENABLE_HEADER_DEPENDENCIES=YES 200 | export ENABLE_ON_DEMAND_RESOURCES=NO 201 | export ENABLE_STRICT_OBJC_MSGSEND=YES 202 | export ENABLE_TESTABILITY=YES 203 | export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS" 204 | export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj" 205 | export EXECUTABLES_FOLDER_PATH=BasicOSX.app/Contents/Executables 206 | export EXECUTABLE_FOLDER_PATH=BasicOSX.app/Contents/MacOS 207 | export EXECUTABLE_NAME=BasicOSX 208 | export EXECUTABLE_PATH=BasicOSX.app/Contents/MacOS/BasicOSX 209 | export EXPANDED_CODE_SIGN_IDENTITY=- 210 | export EXPANDED_CODE_SIGN_IDENTITY_NAME=- 211 | export EXPANDED_PROVISIONING_PROFILE= 212 | export FILE_LIST=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects/LinkFileList 213 | export FIXED_FILES_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/FixedFiles 214 | export FRAMEWORKS_FOLDER_PATH=BasicOSX.app/Contents/Frameworks 215 | export FRAMEWORK_FLAG_PREFIX=-framework 216 | export FRAMEWORK_SEARCH_PATHS="/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug " 217 | export FRAMEWORK_VERSION=A 218 | export FULL_PRODUCT_NAME=BasicOSX.app 219 | export GCC3_VERSION=3.3 220 | export GCC_C_LANGUAGE_STANDARD=gnu99 221 | export GCC_DYNAMIC_NO_PIC=NO 222 | export GCC_INLINES_ARE_PRIVATE_EXTERN=YES 223 | export GCC_NO_COMMON_BLOCKS=YES 224 | export GCC_OPTIMIZATION_LEVEL=0 225 | export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++" 226 | export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 " 227 | export GCC_SYMBOLS_PRIVATE_EXTERN=NO 228 | export GCC_TREAT_WARNINGS_AS_ERRORS=NO 229 | export GCC_VERSION=com.apple.compilers.llvm.clang.1_0 230 | export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0 231 | export GCC_WARN_64_TO_32_BIT_CONVERSION=YES 232 | export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR 233 | export GCC_WARN_UNDECLARED_SELECTOR=YES 234 | export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE 235 | export GCC_WARN_UNUSED_FUNCTION=YES 236 | export GCC_WARN_UNUSED_VARIABLE=YES 237 | export GENERATE_MASTER_OBJECT_FILE=NO 238 | export GENERATE_PKGINFO_FILE=YES 239 | export GENERATE_PROFILING_CODE=NO 240 | export GENERATE_TEXT_BASED_STUBS=NO 241 | export GID=20 242 | export GROUP=staff 243 | export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES 244 | export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES 245 | export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES 246 | export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES 247 | export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES 248 | export HEADERMAP_USES_VFS=NO 249 | export HEADER_SEARCH_PATHS="/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/include " 250 | export HIDE_BITCODE_SYMBOLS=YES 251 | export HOME=/Users/jerrymarino 252 | export ICONV=/usr/bin/iconv 253 | export INFOPLIST_EXPAND_BUILD_SETTINGS=YES 254 | export INFOPLIST_FILE=BasicOSX/Info.plist 255 | export INFOPLIST_OUTPUT_FORMAT=same-as-input 256 | export INFOPLIST_PATH=BasicOSX.app/Contents/Info.plist 257 | export INFOPLIST_PREPROCESS=NO 258 | export INFOSTRINGS_PATH=BasicOSX.app/Contents/Resources/English.lproj/InfoPlist.strings 259 | export INLINE_PRIVATE_FRAMEWORKS=NO 260 | export INSTALLHDRS_COPY_PHASE=NO 261 | export INSTALLHDRS_SCRIPT_PHASE=NO 262 | export INSTALL_DIR=/tmp/BasicOSX.dst/Applications 263 | export INSTALL_GROUP=staff 264 | export INSTALL_MODE_FLAG=u+w,go-w,a+rX 265 | export INSTALL_OWNER=jerrymarino 266 | export INSTALL_PATH=/Applications 267 | export INSTALL_ROOT=/tmp/BasicOSX.dst 268 | export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8" 269 | export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub 270 | export JAVA_ARCHIVE_CLASSES=YES 271 | export JAVA_ARCHIVE_TYPE=JAR 272 | export JAVA_COMPILER=/usr/bin/javac 273 | export JAVA_FOLDER_PATH=BasicOSX.app/Contents/Resources/Java 274 | export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources 275 | export JAVA_JAR_FLAGS=cv 276 | export JAVA_SOURCE_SUBDIR=. 277 | export JAVA_USE_DEPENDENCIES=YES 278 | export JAVA_ZIP_FLAGS=-urg 279 | export JIKES_DEFAULT_FLAGS="+E +OLDCSO" 280 | export KASAN_DEFAULT_CFLAGS="-DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow" 281 | export KEEP_PRIVATE_EXTERNS=NO 282 | export LD_DEPENDENCY_INFO_FILE=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/BasicOSX_dependency_info.dat 283 | export LD_GENERATE_MAP_FILE=NO 284 | export LD_MAP_FILE_PATH=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/BasicOSX-LinkMap-normal-x86_64.txt 285 | export LD_NO_PIE=NO 286 | export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES 287 | export LD_RUNPATH_SEARCH_PATHS=" @executable_path/../Frameworks" 288 | export LEGACY_DEVELOPER_DIR=/Applications/Xcode-9.4.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer 289 | export LEX=lex 290 | export LIBRARY_FLAG_NOSPACE=YES 291 | export LIBRARY_FLAG_PREFIX=-l 292 | export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions 293 | export LIBRARY_SEARCH_PATHS="/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug " 294 | export LINKER_DISPLAYS_MANGLED_NAMES=NO 295 | export LINK_FILE_LIST_normal_x86_64=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/BasicOSX.LinkFileList 296 | export LINK_WITH_STANDARD_LIBRARIES=YES 297 | export LOCALIZABLE_CONTENT_DIR= 298 | export LOCALIZED_RESOURCES_FOLDER_PATH=BasicOSX.app/Contents/Resources/English.lproj 299 | export LOCALIZED_STRING_MACRO_NAMES="NSLocalizedString CFLocalizedString" 300 | export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities 301 | export LOCAL_APPS_DIR=/Applications 302 | export LOCAL_DEVELOPER_DIR=/Library/Developer 303 | export LOCAL_LIBRARY_DIR=/Library 304 | export LOCROOT= 305 | export LOCSYMROOT= 306 | export MACH_O_TYPE=mh_execute 307 | export MACOSX_DEPLOYMENT_TARGET=10.12 308 | export MAC_OS_X_PRODUCT_BUILD_VERSION=17D47 309 | export MAC_OS_X_VERSION_ACTUAL=101303 310 | export MAC_OS_X_VERSION_MAJOR=101300 311 | export MAC_OS_X_VERSION_MINOR=1303 312 | export METAL_LIBRARY_FILE_BASE=default 313 | export METAL_LIBRARY_OUTPUT_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Resources 314 | export MODULE_CACHE_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/ModuleCache.noindex 315 | export MTL_ENABLE_DEBUG_INFO=YES 316 | export NATIVE_ARCH=i386 317 | export NATIVE_ARCH_32_BIT=i386 318 | export NATIVE_ARCH_64_BIT=x86_64 319 | export NATIVE_ARCH_ACTUAL=x86_64 320 | export NO_COMMON=YES 321 | export OBJECT_FILE_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects 322 | export OBJECT_FILE_DIR_normal=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal 323 | export OBJROOT=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex 324 | export ONLY_ACTIVE_ARCH=YES 325 | export OS=MACOS 326 | export OSAC=/usr/bin/osacompile 327 | export PACKAGE_TYPE=com.apple.package-type.wrapper.application 328 | export PASCAL_STRINGS=YES 329 | export PATH="/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-9.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin:/Applications/Xcode-9.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/bin:/Applications/Xcode-9.4.app/Contents/Developer/Platforms/MacOSX.platform/usr/bin:/Applications/Xcode-9.4.app/Contents/Developer/Platforms/MacOSX.platform/usr/local/bin:/Applications/Xcode-9.4.app/Contents/Developer/usr/bin:/Applications/Xcode-9.4.app/Contents/Developer/usr/local/bin:/Applications/Xcode-9.4.app/Contents/Developer/Tools:/usr/local/opt/openssl/bin:/usr/local/bin:/usr/local/share/npm/bin:/Users/jerrymarino/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin:/usr/bin:/bin:/usr/sbin:/sbin" 330 | export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode-9.4.app/Contents/Developer/Headers /Applications/Xcode-9.4.app/Contents/Developer/SDKs /Applications/Xcode-9.4.app/Contents/Developer/Platforms" 331 | export PBDEVELOPMENTPLIST_PATH=BasicOSX.app/Contents/pbdevelopment.plist 332 | export PKGINFO_FILE_PATH=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/PkgInfo 333 | export PKGINFO_PATH=BasicOSX.app/Contents/PkgInfo 334 | export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Applications 335 | export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode-9.4.app/Contents/Developer/usr/bin 336 | export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Library 337 | export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs 338 | export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Tools 339 | export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode-9.4.app/Contents/Developer/usr 340 | export PLATFORM_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/MacOSX.platform 341 | export PLATFORM_DISPLAY_NAME=macOS 342 | export PLATFORM_NAME=macosx 343 | export PLATFORM_PREFERRED_ARCH=x86_64 344 | export PLATFORM_PRODUCT_BUILD_VERSION=9F1027a 345 | export PLIST_FILE_OUTPUT_FORMAT=same-as-input 346 | export PLUGINS_FOLDER_PATH=BasicOSX.app/Contents/PlugIns 347 | export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES 348 | export PRECOMP_DESTINATION_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/PrefixHeaders 349 | export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO 350 | export PRIVATE_HEADERS_FOLDER_PATH=BasicOSX.app/Contents/PrivateHeaders 351 | export PRODUCT_BUNDLE_IDENTIFIER=ssvim.BasicOSX 352 | export PRODUCT_MODULE_NAME=BasicOSX 353 | export PRODUCT_NAME=BasicOSX 354 | export PRODUCT_SETTINGS_PATH=/Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX/BasicOSX/Info.plist 355 | export PRODUCT_TYPE=com.apple.product-type.application 356 | export PROFILING_CODE=NO 357 | export PROJECT=BasicOSX 358 | export PROJECT_DERIVED_FILE_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/DerivedSources 359 | export PROJECT_DIR=/Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX 360 | export PROJECT_FILE_PATH=/Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX/BasicOSX.xcodeproj 361 | export PROJECT_NAME=BasicOSX 362 | export PROJECT_TEMP_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build 363 | export PROJECT_TEMP_ROOT=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex 364 | export PUBLIC_HEADERS_FOLDER_PATH=BasicOSX.app/Contents/Headers 365 | export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES 366 | export REMOVE_CVS_FROM_RESOURCES=YES 367 | export REMOVE_GIT_FROM_RESOURCES=YES 368 | export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES 369 | export REMOVE_HG_FROM_RESOURCES=YES 370 | export REMOVE_SVN_FROM_RESOURCES=YES 371 | export REZ_COLLECTOR_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/ResourceManagerResources 372 | export REZ_OBJECTS_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/ResourceManagerResources/Objects 373 | export REZ_SEARCH_PATHS="/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug " 374 | export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO 375 | export SCRIPTS_FOLDER_PATH=BasicOSX.app/Contents/Resources/Scripts 376 | export SCRIPT_INPUT_FILE_COUNT=0 377 | export SCRIPT_OUTPUT_FILE_COUNT=0 378 | export SDKROOT=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk 379 | export SDK_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk 380 | export SDK_DIR_macosx10_13=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk 381 | export SDK_NAME=macosx10.13 382 | export SDK_NAMES=macosx10.13 383 | export SDK_PRODUCT_BUILD_VERSION=17E189 384 | export SDK_VERSION=10.13 385 | export SDK_VERSION_ACTUAL=101300 386 | export SDK_VERSION_MAJOR=101300 387 | export SDK_VERSION_MINOR=1300 388 | export SED=/usr/bin/sed 389 | export SEPARATE_STRIP=NO 390 | export SEPARATE_SYMBOL_EDIT=NO 391 | export SET_DIR_MODE_OWNER_GROUP=YES 392 | export SET_FILE_MODE_OWNER_GROUP=NO 393 | export SHALLOW_BUNDLE=NO 394 | export SHARED_DERIVED_FILE_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/DerivedSources 395 | export SHARED_FRAMEWORKS_FOLDER_PATH=BasicOSX.app/Contents/SharedFrameworks 396 | export SHARED_PRECOMPS_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/PrecompiledHeaders 397 | export SHARED_SUPPORT_FOLDER_PATH=BasicOSX.app/Contents/SharedSupport 398 | export SKIP_INSTALL=NO 399 | export SOURCE_ROOT=/Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX 400 | export SRCROOT=/Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX 401 | export STRINGS_FILE_OUTPUT_ENCODING=UTF-16 402 | export STRIP_BITCODE_FROM_COPIED_FILES=NO 403 | export STRIP_INSTALLED_PRODUCT=YES 404 | export STRIP_PNG_TEXT=NO 405 | export STRIP_STYLE=all 406 | export STRIP_SWIFT_SYMBOLS=YES 407 | export SUPPORTED_PLATFORMS=macosx 408 | export SUPPORTS_TEXT_BASED_API=NO 409 | export SWIFT_ACTIVE_COMPILATION_CONDITIONS=DEBUG 410 | export SWIFT_OPTIMIZATION_LEVEL=-Onone 411 | export SWIFT_PLATFORM_TARGET_PREFIX=macosx 412 | export SWIFT_VERSION=3.0 413 | export SYMROOT=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products 414 | export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities 415 | export SYSTEM_APPS_DIR=/Applications 416 | export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices 417 | export SYSTEM_DEMOS_DIR=/Applications/Extras 418 | export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Applications 419 | export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode-9.4.app/Contents/Developer/usr/bin 420 | export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode-9.4.app/Contents/Developer/Applications/Utilities/Built Examples" 421 | export SYSTEM_DEVELOPER_DIR=/Applications/Xcode-9.4.app/Contents/Developer 422 | export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode-9.4.app/Contents/Developer/ADC Reference Library" 423 | export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode-9.4.app/Contents/Developer/Applications/Graphics Tools" 424 | export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode-9.4.app/Contents/Developer/Applications/Java Tools" 425 | export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode-9.4.app/Contents/Developer/Applications/Performance Tools" 426 | export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode-9.4.app/Contents/Developer/ADC Reference Library/releasenotes" 427 | export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode-9.4.app/Contents/Developer/Tools 428 | export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode-9.4.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools" 429 | export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode-9.4.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools" 430 | export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode-9.4.app/Contents/Developer/usr 431 | export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Applications/Utilities 432 | export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation 433 | export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions 434 | export SYSTEM_LIBRARY_DIR=/System/Library 435 | export TAPI_VERIFY_MODE=ErrorsOnly 436 | export TARGETNAME=BasicOSX 437 | export TARGET_BUILD_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug 438 | export TARGET_NAME=BasicOSX 439 | export TARGET_TEMP_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build 440 | export TEMP_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build 441 | export TEMP_FILES_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build 442 | export TEMP_FILE_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build 443 | export TEMP_ROOT=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex 444 | export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault 445 | export TOOLCHAIN_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain 446 | export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO 447 | export UID=501 448 | export UNLOCALIZED_RESOURCES_FOLDER_PATH=BasicOSX.app/Contents/Resources 449 | export UNSTRIPPED_PRODUCT=NO 450 | export USER=jerrymarino 451 | export USER_APPS_DIR=/Users/jerrymarino/Applications 452 | export USER_LIBRARY_DIR=/Users/jerrymarino/Library 453 | export USE_DYNAMIC_NO_PIC=YES 454 | export USE_HEADERMAP=YES 455 | export USE_HEADER_SYMLINKS=NO 456 | export VALIDATE_PRODUCT=NO 457 | export VALID_ARCHS="i386 x86_64" 458 | export VERBOSE_PBXCP=NO 459 | export VERSIONPLIST_PATH=BasicOSX.app/Contents/version.plist 460 | export VERSION_INFO_BUILDER=jerrymarino 461 | export VERSION_INFO_FILE=BasicOSX_vers.c 462 | export VERSION_INFO_STRING="\"@(#)PROGRAM:BasicOSX PROJECT:BasicOSX-\"" 463 | export WRAPPER_EXTENSION=app 464 | export WRAPPER_NAME=BasicOSX.app 465 | export WRAPPER_SUFFIX=.app 466 | export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO 467 | export XCODE_APP_SUPPORT_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Library/Xcode 468 | export XCODE_PRODUCT_BUILD_VERSION=9F1027a 469 | export XCODE_VERSION_ACTUAL=0940 470 | export XCODE_VERSION_MAJOR=0900 471 | export XCODE_VERSION_MINOR=0940 472 | export XPCSERVICES_FOLDER_PATH=BasicOSX.app/Contents/XPCServices 473 | export YACC=yacc 474 | export arch=x86_64 475 | export diagnostic_message_length=165 476 | export variant=normal 477 | /bin/sh -c /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Script-1017BB0F1ED90EA700A52952.sh 478 | /usr/local/bin/XCCompilationDB 479 | 480 | CopySwiftLibs /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app 481 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX 482 | export CODESIGN_ALLOCATE=/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate 483 | export DEVELOPER_DIR=/Applications/Xcode-9.4.app/Contents/Developer 484 | export SDKROOT=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk 485 | builtin-swiftStdLibTool --copy --verbose --sign - --scan-executable /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/MacOS/BasicOSX --scan-folder /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks --scan-folder /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/PlugIns --platform macosx --toolchain /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks --strip-bitcode --resource-destination /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Resources --resource-library libswiftRemoteMirror.dylib 486 | Requested Swift ABI version based on scanned binaries: 6 487 | Copying /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftAppKit.dylib to /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftAppKit.dylib 488 | /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftAppKit.dylib' '-r' '-o' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftAppKit.dylib' 489 | Copying /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftCore.dylib to /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCore.dylib 490 | /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftCore.dylib' '-r' '-o' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCore.dylib' 491 | Copying /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftCoreData.dylib to /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreData.dylib 492 | /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftCoreData.dylib' '-r' '-o' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreData.dylib' 493 | Copying /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftCoreFoundation.dylib to /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreFoundation.dylib 494 | /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftCoreFoundation.dylib' '-r' '-o' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreFoundation.dylib' 495 | Copying /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftCoreGraphics.dylib to /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreGraphics.dylib 496 | /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftCoreGraphics.dylib' '-r' '-o' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreGraphics.dylib' 497 | Copying /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftCoreImage.dylib to /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreImage.dylib 498 | /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftCoreImage.dylib' '-r' '-o' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreImage.dylib' 499 | Copying /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftDarwin.dylib to /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftDarwin.dylib 500 | /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftDarwin.dylib' '-r' '-o' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftDarwin.dylib' 501 | Copying /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftDispatch.dylib to /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftDispatch.dylib 502 | /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftDispatch.dylib' '-r' '-o' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftDispatch.dylib' 503 | Copying /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftFoundation.dylib to /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftFoundation.dylib 504 | /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftFoundation.dylib' '-r' '-o' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftFoundation.dylib' 505 | Copying /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftIOKit.dylib to /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftIOKit.dylib 506 | /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftIOKit.dylib' '-r' '-o' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftIOKit.dylib' 507 | Copying /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftMetal.dylib to /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftMetal.dylib 508 | /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftMetal.dylib' '-r' '-o' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftMetal.dylib' 509 | Copying /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftObjectiveC.dylib to /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftObjectiveC.dylib 510 | /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftObjectiveC.dylib' '-r' '-o' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftObjectiveC.dylib' 511 | Copying /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftQuartzCore.dylib to /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftQuartzCore.dylib 512 | /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftQuartzCore.dylib' '-r' '-o' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftQuartzCore.dylib' 513 | Copying /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftXPC.dylib to /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftXPC.dylib 514 | /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftXPC.dylib' '-r' '-o' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftXPC.dylib' 515 | Copying /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftos.dylib to /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftos.dylib 516 | /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftos.dylib' '-r' '-o' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftos.dylib' 517 | Copying /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftRemoteMirror.dylib to /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Resources/libswiftRemoteMirror.dylib 518 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftAppKit.dylib 519 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftAppKit.dylib' 520 | Codesigning /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftAppKit.dylib 521 | /usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftAppKit.dylib' 522 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftAppKit.dylib 523 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftAppKit.dylib' 524 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftDispatch.dylibProbing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreImage.dylib 525 | 526 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreData.dylib 527 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftFoundation.dylib 528 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftos.dylib 529 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftQuartzCore.dylib 530 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreData.dylib' /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreImage.dylib' 531 | 532 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftFoundation.dylib' 533 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftDispatch.dylib' 534 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftos.dylib' 535 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftQuartzCore.dylib' 536 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCore.dylibProbing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreGraphics.dylib 537 | 538 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCore.dylib' 539 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreGraphics.dylib' 540 | Codesigning /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftos.dylib 541 | /usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftos.dylib' 542 | Codesigning /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftFoundation.dylib 543 | /usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftFoundation.dylib' 544 | Codesigning /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreData.dylib 545 | /usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreData.dylib' 546 | Codesigning /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreGraphics.dylib 547 | /usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreGraphics.dylib' 548 | Codesigning /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreImage.dylib 549 | /usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreImage.dylib' 550 | Codesigning /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftDispatch.dylib 551 | /usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftDispatch.dylib' 552 | Codesigning /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftQuartzCore.dylib 553 | /usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftQuartzCore.dylib' 554 | Codesigning /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCore.dylib 555 | /usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCore.dylib' 556 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftos.dylib 557 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftos.dylib' 558 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreData.dylib 559 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreData.dylib' 560 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreGraphics.dylib 561 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreGraphics.dylib' 562 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftQuartzCore.dylib 563 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftQuartzCore.dylib' 564 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreImage.dylib 565 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreImage.dylib' 566 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftDispatch.dylib 567 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftDispatch.dylib' 568 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreFoundation.dylib 569 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreFoundation.dylib' 570 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftDarwin.dylib 571 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftIOKit.dylib 572 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftDarwin.dylib' 573 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftIOKit.dylib' 574 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftMetal.dylib 575 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftMetal.dylib' 576 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftObjectiveC.dylib 577 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftObjectiveC.dylib' 578 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftXPC.dylib 579 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftXPC.dylib' 580 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftFoundation.dylib 581 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftFoundation.dylib' 582 | Codesigning /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreFoundation.dylib 583 | /usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreFoundation.dylib' 584 | Codesigning /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftDarwin.dylib 585 | /usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftDarwin.dylib' 586 | Codesigning /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftObjectiveC.dylib 587 | /usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftObjectiveC.dylib' 588 | Codesigning /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftMetal.dylib 589 | /usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftMetal.dylib' 590 | Codesigning /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftXPC.dylib 591 | /usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftXPC.dylib' 592 | Codesigning /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftIOKit.dylib 593 | /usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftIOKit.dylib' 594 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCore.dylib 595 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCore.dylib' 596 | 2018-06-30 08:44:13.147 xcodebuild[27129:5233366] DVTToolchain: Failed to load toolchain: : Error Domain=DVTToolchainErrorDomain Code=6 "Info.plist:OverrideBuildSettings:{SWIFT_LINK_OBJC_RUNTIME,SWIFT_DISABLE_REQUIRED_ARCLITE,ENABLE_BITCODE} must contain a string or array of strings" UserInfo={NSFilePath=/Library/Developer/Toolchains/swift-DEVELOPMENT-SNAPSHOT-2016-05-03-a.xctoolchain, NSLocalizedDescription=Info.plist:OverrideBuildSettings:{SWIFT_LINK_OBJC_RUNTIME,SWIFT_DISABLE_REQUIRED_ARCLITE,ENABLE_BITCODE} must contain a string or array of strings} 597 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftMetal.dylib 598 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftMetal.dylib' 599 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftObjectiveC.dylib 600 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftObjectiveC.dylib' 601 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftDarwin.dylib 602 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftDarwin.dylib' 603 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreFoundation.dylib 604 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftCoreFoundation.dylib' 605 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftXPC.dylib 606 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftXPC.dylib' 607 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftIOKit.dylib 608 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app/Contents/Frameworks/libswiftIOKit.dylib' 609 | 610 | Touch /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app 611 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX 612 | /usr/bin/touch -c /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app 613 | 614 | ProcessProductPackaging "" /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/BasicOSX.app.xcent 615 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX 616 | 617 | 618 | Entitlements: 619 | 620 | { 621 | "com.apple.security.get-task-allow" = 1; 622 | } 623 | 624 | 625 | builtin-productPackagingUtility -entitlements -format xml -o /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/BasicOSX.app.xcent 626 | 627 | CodeSign /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app 628 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX 629 | export CODESIGN_ALLOCATE=/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate 630 | 631 | Signing Identity: "-" 632 | 633 | /usr/bin/codesign --force --sign - --entitlements /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/BasicOSX.app.xcent --timestamp=none /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app 634 | 635 | RegisterWithLaunchServices /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app 636 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX 637 | builtin-lsRegisterURL /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Products/Debug/BasicOSX.app 638 | 639 | ** BUILD SUCCEEDED ** 640 | -------------------------------------------------------------------------------- /ExampleLogs/ExampleCpp.txt: -------------------------------------------------------------------------------- 1 | 2018-06-30 09:54:22.126 xcodebuild[30275:5287779] [MT] DVTToolchain: Failed to load toolchain: : Error Domain=DVTToolchainErrorDomain Code=6 "Info.plist:OverrideBuildSettings:{SWIFT_LINK_OBJC_RUNTIME,SWIFT_DISABLE_REQUIRED_ARCLITE,ENABLE_BITCODE} must contain a string or array of strings" UserInfo={NSFilePath=/Library/Developer/Toolchains/swift-DEVELOPMENT-SNAPSHOT-2016-05-03-a.xctoolchain, NSLocalizedDescription=Info.plist:OverrideBuildSettings:{SWIFT_LINK_OBJC_RUNTIME,SWIFT_DISABLE_REQUIRED_ARCLITE,ENABLE_BITCODE} must contain a string or array of strings} 2 | 2018-06-30 09:54:22.620 xcodebuild[30275:5287779] [MT] PluginLoading: Required plug-in compatibility UUID 426A087B-D3AA-431A-AFDF-F135EC00DE1C for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/Refactorator.xcplugin' not present in DVTPlugInCompatibilityUUIDs 3 | 2018-06-30 09:54:22.622 xcodebuild[30275:5287779] [MT] PluginLoading: Required plug-in compatibility UUID 426A087B-D3AA-431A-AFDF-F135EC00DE1C for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/Alcatraz.xcplugin' not present in DVTPlugInCompatibilityUUIDs 4 | === BUILD TARGET XcodeCompilationDatabase OF PROJECT XcodeCompilationDatabase WITH CONFIGURATION Debug === 5 | 6 | Check dependencies 7 | 8 | Write auxiliary files 9 | write-file /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/XCCompilationDB.hmap 10 | write-file /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/XCCompilationDB-project-headers.hmap 11 | write-file /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/XCCompilationDB-generated-files.hmap 12 | write-file /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/XCCompilationDB-all-target-headers.hmap 13 | write-file /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/XCCompilationDB-own-target-headers.hmap 14 | write-file /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/XCCompilationDB-all-non-framework-target-headers.hmap 15 | /bin/mkdir -p /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/Objects-normal/x86_64 16 | write-file /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/Objects-normal/x86_64/XCCompilationDB.LinkFileList 17 | 18 | CompileC /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/Objects-normal/x86_64/main.o Source/main.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler 19 | cd /Users/jerrymarino/Projects/XcodeCompilationDatabase 20 | export LANG=en_US.US-ASCII 21 | /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch x86_64 -fmessage-length=165 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -fcolor-diagnostics -std=gnu++11 -stdlib=libc++ -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wno-non-literal-null-conversion -Wno-objc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode-9.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.12 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wno-block-capture-autoreleasing -Wno-strict-prototypes -Wno-range-loop-analysis -index-store-path /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Index/DataStore -iquote /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/XCCompilationDB-generated-files.hmap -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/XCCompilationDB-own-target-headers.hmap -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/XCCompilationDB-all-target-headers.hmap -iquote /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/XCCompilationDB-project-headers.hmap -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Products/Debug/include -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/DerivedSources/x86_64 -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/DerivedSources -F/Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Products/Debug -F/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/Frameworks -F/Applications/Xcode.app/Contents/SharedFrameworks -F/Applications/Xcode.app/Contents/Frameworks -F/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/Frameworks/ -MMD -MT dependencies -MF /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/Objects-normal/x86_64/main.d --serialize-diagnostics /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/Objects-normal/x86_64/main.dia -c /Users/jerrymarino/Projects/XcodeCompilationDatabase/Source/main.mm -o /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/Objects-normal/x86_64/main.o 22 | 23 | CompileC /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/Objects-normal/x86_64/CompilationDatabase.o Source/CompilationDatabase.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler 24 | cd /Users/jerrymarino/Projects/XcodeCompilationDatabase 25 | export LANG=en_US.US-ASCII 26 | /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch x86_64 -fmessage-length=165 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -fcolor-diagnostics -std=gnu++11 -stdlib=libc++ -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wno-non-literal-null-conversion -Wno-objc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode-9.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.12 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wno-block-capture-autoreleasing -Wno-strict-prototypes -Wno-range-loop-analysis -index-store-path /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Index/DataStore -iquote /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/XCCompilationDB-generated-files.hmap -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/XCCompilationDB-own-target-headers.hmap -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/XCCompilationDB-all-target-headers.hmap -iquote /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/XCCompilationDB-project-headers.hmap -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Products/Debug/include -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/DerivedSources/x86_64 -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/DerivedSources -F/Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Products/Debug -F/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/Frameworks -F/Applications/Xcode.app/Contents/SharedFrameworks -F/Applications/Xcode.app/Contents/Frameworks -F/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/Frameworks/ -MMD -MT dependencies -MF /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/Objects-normal/x86_64/CompilationDatabase.d --serialize-diagnostics /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/Objects-normal/x86_64/CompilationDatabase.dia -c /Users/jerrymarino/Projects/XcodeCompilationDatabase/Source/CompilationDatabase.mm -o /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/Objects-normal/x86_64/CompilationDatabase.o 27 | 28 | Ld /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Products/Debug/XCCompilationDB normal x86_64 29 | cd /Users/jerrymarino/Projects/XcodeCompilationDatabase 30 | export MACOSX_DEPLOYMENT_TARGET=10.12 31 | /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch x86_64 -isysroot /Applications/Xcode-9.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -L/Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Products/Debug -F/Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Products/Debug -F/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/Frameworks -F/Applications/Xcode.app/Contents/SharedFrameworks -F/Applications/Xcode.app/Contents/Frameworks -filelist /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/Objects-normal/x86_64/XCCompilationDB.LinkFileList -Xlinker -rpath -Xlinker /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/Frameworks/ -Xlinker -rpath -Xlinker /Applications/Xcode.app/Contents/SharedFrameworks/ -Xlinker -rpath -Xlinker /Applications/Xcode.app/Contents/Frameworks/ -mmacosx-version-min=10.12 -Xlinker -object_path_lto -Xlinker /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/Objects-normal/x86_64/XCCompilationDB_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -stdlib=libc++ -fobjc-arc -fobjc-link-runtime -framework DevToolsCore -Xlinker -dependency_info -Xlinker /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/Objects-normal/x86_64/XCCompilationDB_dependency_info.dat -o /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Products/Debug/XCCompilationDB 32 | 33 | ProcessProductPackaging "" /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/XCCompilationDB.xcent 34 | cd /Users/jerrymarino/Projects/XcodeCompilationDatabase 35 | 36 | 37 | Entitlements: 38 | 39 | { 40 | "com.apple.security.get-task-allow" = 1; 41 | } 42 | 43 | 44 | builtin-productPackagingUtility -entitlements -format xml -o /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/XCCompilationDB.xcent 45 | 46 | CodeSign /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Products/Debug/XCCompilationDB 47 | cd /Users/jerrymarino/Projects/XcodeCompilationDatabase 48 | export CODESIGN_ALLOCATE=/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate 49 | 50 | Signing Identity: "-" 51 | 52 | /usr/bin/codesign --force --sign - --entitlements /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Intermediates.noindex/XcodeCompilationDatabase.build/Debug/XcodeCompilationDatabase.build/XCCompilationDB.xcent --timestamp=none /Users/jerrymarino/Library/Developer/Xcode/DerivedData/XcodeCompilationDatabase-fnleldstmkghywcirwqpaylpwagx/Build/Products/Debug/XCCompilationDB 53 | 54 | ** BUILD SUCCEEDED ** 55 | -------------------------------------------------------------------------------- /ExampleLogs/MessySwiftLog.txt: -------------------------------------------------------------------------------- 1 | 2018-06-29 08:21:00.634 xcodebuild[15914:5068114] [MT] DVTToolchain: Failed to load toolchain: : Error Domain=DVTToolchainErrorDomain Code=6 "Info.plist:OverrideBuildSettings:{SWIFT_LINK_OBJC_RUNTIME,SWIFT_DISABLE_REQUIRED_ARCLITE,ENABLE_BITCODE} must contain a string or array of strings" UserInfo={NSFilePath=/Library/Developer/Toolchains/swift-DEVELOPMENT-SNAPSHOT-2016-05-03-a.xctoolchain, NSLocalizedDescription=Info.plist:OverrideBuildSettings:{SWIFT_LINK_OBJC_RUNTIME,SWIFT_DISABLE_REQUIRED_ARCLITE,ENABLE_BITCODE} must contain a string or array of strings} 2 | 2018-06-29 08:21:00.951 xcodebuild[15914:5068114] [MT] PluginLoading: Required plug-in compatibility UUID 426A087B-D3AA-431A-AFDF-F135EC00DE1C for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/Refactorator.xcplugin' not present in DVTPlugInCompatibilityUUIDs 3 | 2018-06-29 08:21:00.951 xcodebuild[15914:5068114] [MT] PluginLoading: Required plug-in compatibility UUID 426A087B-D3AA-431A-AFDF-F135EC00DE1C for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/Alcatraz.xcplugin' not present in DVTPlugInCompatibilityUUIDs 4 | Build settings from command line: 5 | SDKROOT = iphonesimulator11.4 6 | 7 | === BUILD TARGET Basic OF PROJECT Basic WITH CONFIGURATION Debug === 8 | 9 | Check dependencies 10 | 11 | ProcessProductPackaging "" /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Basic.app-Simulated.xcent 12 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS 13 | export PATH="/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode-9.4.app/Contents/Developer/usr/bin:/usr/local/opt/openssl/bin:/usr/local/bin:/usr/local/share/npm/bin:~/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin/:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/opt/openssl/bin:/usr/local/share/npm/bin:~/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin/" 14 | 15 | 16 | Entitlements: 17 | 18 | { 19 | "application-identifier" = "FAKETEAMID.ssvim.Basic"; 20 | "keychain-access-groups" = ( 21 | "FAKETEAMID.ssvim.Basic" 22 | ); 23 | } 24 | 25 | 26 | builtin-productPackagingUtility -entitlements -format xml -o /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Basic.app-Simulated.xcent 27 | 28 | CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler 29 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS 30 | export DEVELOPER_DIR=/Applications/Xcode-9.4.app/Contents/Developer 31 | export PATH="/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode-9.4.app/Contents/Developer/usr/bin:/usr/local/opt/openssl/bin:/usr/local/bin:/usr/local/share/npm/bin:~/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin/:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/opt/openssl/bin:/usr/local/share/npm/bin:~/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin/" 32 | export SDKROOT=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk 33 | /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -incremental -module-name Basic -Onone -enforce-exclusivity=checked -DDEBUG -parseable-output -sdk /Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -target x86_64-apple-ios10.3 -g -module-cache-path /Users/jerrymarino/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Index/DataStore -swift-version 3 -I /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator -F /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator -c -j8 /Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS/Basic/ViewController.swift /Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS/Basic/AppDelegate.swift /Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS/Basic/Wizzard.swift -output-file-map /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Objects-normal/x86_64/Basic-OutputFileMap.json -parseable-output -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Objects-normal/x86_64/Basic.swiftmodule -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Basic-generated-files.hmap -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Basic-own-target-headers.hmap -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Basic-all-target-headers.hmap -Xcc -iquote -Xcc /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Basic-project-headers.hmap -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/include -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/DerivedSources/x86_64 -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/DerivedSources -Xcc -DDEBUG=1 -emit-objc-header -emit-objc-header-path /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Objects-normal/x86_64/Basic-Swift.h -Xcc -working-directory/Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS 34 | 35 | MergeSwiftModule normal x86_64 /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Objects-normal/x86_64/Basic.swiftmodule 36 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS 37 | /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -merge-modules -emit-module /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Objects-normal/x86_64/ViewController~partial.swiftmodule /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Objects-normal/x86_64/AppDelegate~partial.swiftmodule /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Objects-normal/x86_64/Wizzard~partial.swiftmodule -parse-as-library -sil-merge-partial-modules -disable-diagnostic-passes -disable-sil-perf-optzns -target x86_64-apple-ios10.3 -enable-objc-interop -sdk /Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -I /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator -F /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator -enable-testing -g -module-cache-path /Users/jerrymarino/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 3 -enforce-exclusivity=checked -Onone -D DEBUG -serialize-debugging-options -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Basic-generated-files.hmap -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Basic-own-target-headers.hmap -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Basic-all-target-headers.hmap -Xcc -iquote -Xcc /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Basic-project-headers.hmap -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/include -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/DerivedSources/x86_64 -Xcc -I/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/DerivedSources -Xcc -DDEBUG=1 -Xcc -working-directory/Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS -emit-module-doc-path /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Objects-normal/x86_64/Basic.swiftdoc -module-name Basic -emit-objc-header-path /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Objects-normal/x86_64/Basic-Swift.h -o /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Objects-normal/x86_64/Basic.swiftmodule 38 | 39 | Ditto /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/DerivedSources/Basic-Swift.h /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Objects-normal/x86_64/Basic-Swift.h 40 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS 41 | export PATH="/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode-9.4.app/Contents/Developer/usr/bin:/usr/local/opt/openssl/bin:/usr/local/bin:/usr/local/share/npm/bin:~/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin/:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/opt/openssl/bin:/usr/local/share/npm/bin:~/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin/" 42 | /usr/bin/ditto -rsrc /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Objects-normal/x86_64/Basic-Swift.h /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/DerivedSources/Basic-Swift.h 43 | 44 | Ditto /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.swiftmodule/x86_64.swiftmodule /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Objects-normal/x86_64/Basic.swiftmodule 45 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS 46 | export PATH="/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode-9.4.app/Contents/Developer/usr/bin:/usr/local/opt/openssl/bin:/usr/local/bin:/usr/local/share/npm/bin:~/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin/:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/opt/openssl/bin:/usr/local/share/npm/bin:~/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin/" 47 | /usr/bin/ditto -rsrc /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Objects-normal/x86_64/Basic.swiftmodule /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.swiftmodule/x86_64.swiftmodule 48 | 49 | Ditto /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.swiftmodule/x86_64.swiftdoc /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Objects-normal/x86_64/Basic.swiftdoc 50 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS 51 | export PATH="/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode-9.4.app/Contents/Developer/usr/bin:/usr/local/opt/openssl/bin:/usr/local/bin:/usr/local/share/npm/bin:~/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin/:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/opt/openssl/bin:/usr/local/share/npm/bin:~/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin/" 52 | /usr/bin/ditto -rsrc /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Objects-normal/x86_64/Basic.swiftdoc /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.swiftmodule/x86_64.swiftdoc 53 | 54 | Ld /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Basic normal x86_64 55 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS 56 | export IPHONEOS_DEPLOYMENT_TARGET=10.3 57 | export PATH="/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode-9.4.app/Contents/Developer/usr/bin:/usr/local/opt/openssl/bin:/usr/local/bin:/usr/local/share/npm/bin:~/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin/:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/opt/openssl/bin:/usr/local/share/npm/bin:~/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin/" 58 | /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -L/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator -F/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator -filelist /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Objects-normal/x86_64/Basic.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -mios-simulator-version-min=10.3 -dead_strip -Xlinker -object_path_lto -Xlinker /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Objects-normal/x86_64/Basic_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -objc_abi_version -Xlinker 2 -fobjc-link-runtime -L/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator -Xlinker -add_ast_path -Xlinker /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Objects-normal/x86_64/Basic.swiftmodule -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __entitlements -Xlinker /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Basic.app-Simulated.xcent -Xlinker -dependency_info -Xlinker /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Objects-normal/x86_64/Basic_dependency_info.dat -o /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Basic 59 | 60 | CompileStoryboard Basic/Base.lproj/Main.storyboard 61 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS 62 | export PATH="/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode-9.4.app/Contents/Developer/usr/bin:/usr/local/opt/openssl/bin:/usr/local/bin:/usr/local/share/npm/bin:~/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin/:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/opt/openssl/bin:/usr/local/share/npm/bin:~/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin/" 63 | export XCODE_DEVELOPER_USR_PATH=/Applications/Xcode-9.4.app/Contents/Developer/usr/bin/.. 64 | /Applications/Xcode-9.4.app/Contents/Developer/usr/bin/ibtool --errors --warnings --notices --module Basic --output-partial-info-plist /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Main-SBPartialInfo.plist --auto-activate-custom-fonts --target-device iphone --target-device ipad --minimum-deployment-target 10.3 --output-format human-readable-text --compilation-directory /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Base.lproj /Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS/Basic/Base.lproj/Main.storyboard 65 | 66 | CompileAssetCatalog /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app Basic/Assets.xcassets 67 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS 68 | export PATH="/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode-9.4.app/Contents/Developer/usr/bin:/usr/local/opt/openssl/bin:/usr/local/bin:/usr/local/share/npm/bin:~/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin/:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/opt/openssl/bin:/usr/local/share/npm/bin:~/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin/" 69 | /Applications/Xcode-9.4.app/Contents/Developer/usr/bin/actool --output-format human-readable-text --notices --warnings --export-dependency-info /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/assetcatalog_dependencies --output-partial-info-plist /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/assetcatalog_generated_info.plist --app-icon AppIcon --compress-pngs --enable-on-demand-resources YES --sticker-pack-identifier-prefix ssvim.Basic.sticker-pack. --target-device iphone --target-device ipad --minimum-deployment-target 10.3 --platform iphonesimulator --product-type com.apple.product-type.application --compile /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app /Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS/Basic/Assets.xcassets 70 | /* com.apple.actool.compilation-results */ 71 | /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/assetcatalog_generated_info.plist 72 | 73 | 74 | CompileStoryboard Basic/Base.lproj/LaunchScreen.storyboard 75 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS 76 | export PATH="/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode-9.4.app/Contents/Developer/usr/bin:/usr/local/opt/openssl/bin:/usr/local/bin:/usr/local/share/npm/bin:~/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin/:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/opt/openssl/bin:/usr/local/share/npm/bin:~/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin/" 77 | export XCODE_DEVELOPER_USR_PATH=/Applications/Xcode-9.4.app/Contents/Developer/usr/bin/.. 78 | /Applications/Xcode-9.4.app/Contents/Developer/usr/bin/ibtool --errors --warnings --notices --module Basic --output-partial-info-plist /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/LaunchScreen-SBPartialInfo.plist --auto-activate-custom-fonts --target-device iphone --target-device ipad --minimum-deployment-target 10.3 --output-format human-readable-text --compilation-directory /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Base.lproj /Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS/Basic/Base.lproj/LaunchScreen.storyboard 79 | 80 | ProcessInfoPlistFile /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Info.plist Basic/Info.plist 81 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS 82 | export PATH="/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode-9.4.app/Contents/Developer/usr/bin:/usr/local/opt/openssl/bin:/usr/local/bin:/usr/local/share/npm/bin:~/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin/:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/opt/openssl/bin:/usr/local/share/npm/bin:~/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin/" 83 | builtin-infoPlistUtility /Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS/Basic/Info.plist -genpkginfo /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/PkgInfo -expandbuildsettings -format binary -platform iphonesimulator -additionalcontentfile /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/LaunchScreen-SBPartialInfo.plist -additionalcontentfile /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/assetcatalog_generated_info.plist -additionalcontentfile /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Main-SBPartialInfo.plist -o /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Info.plist 84 | 85 | LinkStoryboards 86 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS 87 | export PATH="/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode-9.4.app/Contents/Developer/usr/bin:/usr/local/opt/openssl/bin:/usr/local/bin:/usr/local/share/npm/bin:~/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin/:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/opt/openssl/bin:/usr/local/share/npm/bin:~/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin/" 88 | export XCODE_DEVELOPER_USR_PATH=/Applications/Xcode-9.4.app/Contents/Developer/usr/bin/.. 89 | /Applications/Xcode-9.4.app/Contents/Developer/usr/bin/ibtool --errors --warnings --notices --module Basic --target-device iphone --target-device ipad --minimum-deployment-target 10.3 --output-format human-readable-text --link /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Base.lproj/LaunchScreen.storyboardc /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Base.lproj/Main.storyboardc 90 | 91 | PhaseScriptExecution Run\ Script /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Script-100DC0F41ED1F7DE001C2E5A.sh 92 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS 93 | export ACTION=build 94 | export AD_HOC_CODE_SIGNING_ALLOWED=YES 95 | export ALTERNATE_GROUP=staff 96 | export ALTERNATE_MODE=u+w,go-w,a+rX 97 | export ALTERNATE_OWNER=jerrymarino 98 | export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO 99 | export ALWAYS_SEARCH_USER_PATHS=NO 100 | export ALWAYS_USE_SEPARATE_HEADERMAPS=NO 101 | export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer 102 | export APPLE_INTERNAL_DIR=/AppleInternal 103 | export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation 104 | export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library 105 | export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools 106 | export APPLICATION_EXTENSION_API_ONLY=NO 107 | export APPLY_RULES_IN_COPY_FILES=NO 108 | export ARCHS=x86_64 109 | export ARCHS_STANDARD="i386 x86_64" 110 | export ARCHS_STANDARD_32_64_BIT="i386 x86_64" 111 | export ARCHS_STANDARD_32_BIT=i386 112 | export ARCHS_STANDARD_64_BIT=x86_64 113 | export ARCHS_STANDARD_INCLUDING_64_BIT="i386 x86_64" 114 | export ARCHS_UNIVERSAL_IPHONE_OS="i386 x86_64" 115 | export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon 116 | export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator" 117 | export BITCODE_GENERATION_MODE=marker 118 | export BUILD_ACTIVE_RESOURCES_ONLY=YES 119 | export BUILD_COMPONENTS="headers build" 120 | export BUILD_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products 121 | export BUILD_ROOT=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products 122 | export BUILD_STYLE= 123 | export BUILD_VARIANTS=normal 124 | export BUILT_PRODUCTS_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator 125 | export CACHE_ROOT=/var/folders/x3/p1grs9_x7cd5m4dkpp33mw2m0000gn/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode 126 | export CCHROOT=/var/folders/x3/p1grs9_x7cd5m4dkpp33mw2m0000gn/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode 127 | export CHMOD=/bin/chmod 128 | export CHOWN=/usr/sbin/chown 129 | export CLANG_ANALYZER_NONNULL=YES 130 | export CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION=YES_AGGRESSIVE 131 | export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x 132 | export CLANG_CXX_LIBRARY=libc++ 133 | export CLANG_ENABLE_MODULES=YES 134 | export CLANG_ENABLE_OBJC_ARC=YES 135 | export CLANG_MODULES_BUILD_SESSION_FILE=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation 136 | export CLANG_WARN_BOOL_CONVERSION=YES 137 | export CLANG_WARN_CONSTANT_CONVERSION=YES 138 | export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR 139 | export CLANG_WARN_DOCUMENTATION_COMMENTS=YES 140 | export CLANG_WARN_EMPTY_BODY=YES 141 | export CLANG_WARN_ENUM_CONVERSION=YES 142 | export CLANG_WARN_INFINITE_RECURSION=YES 143 | export CLANG_WARN_INT_CONVERSION=YES 144 | export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR 145 | export CLANG_WARN_SUSPICIOUS_MOVE=YES 146 | export CLANG_WARN_UNREACHABLE_CODE=YES 147 | export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES 148 | export CLASS_FILE_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/JavaClasses 149 | export CLEAN_PRECOMPS=YES 150 | export CLONE_HEADERS=NO 151 | export CODESIGNING_FOLDER_PATH=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app 152 | export CODE_SIGNING_ALLOWED=YES 153 | export CODE_SIGNING_REQUIRED=YES 154 | export CODE_SIGN_CONTEXT_CLASS=XCiPhoneSimulatorCodeSignContext 155 | export CODE_SIGN_IDENTITY=- 156 | export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES 157 | export COLOR_DIAGNOSTICS=YES 158 | export COMBINE_HIDPI_IMAGES=NO 159 | export COMMAND_MODE=legacy 160 | export COMPILER_INDEX_STORE_ENABLE=Default 161 | export COMPOSITE_SDK_DIRS=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/CompositeSDKs 162 | export COMPRESS_PNG_FILES=YES 163 | export CONFIGURATION=Debug 164 | export CONFIGURATION_BUILD_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator 165 | export CONFIGURATION_TEMP_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator 166 | export CONTENTS_FOLDER_PATH=Basic.app 167 | export COPYING_PRESERVES_HFS_DATA=NO 168 | export COPY_HEADERS_RUN_UNIFDEF=NO 169 | export COPY_PHASE_STRIP=NO 170 | export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES 171 | export CORRESPONDING_DEVICE_PLATFORM_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneOS.platform 172 | export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos 173 | export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk 174 | export CORRESPONDING_DEVICE_SDK_NAME=iphoneos11.4 175 | export CP=/bin/cp 176 | export CREATE_INFOPLIST_SECTION_IN_BINARY=NO 177 | export CURRENT_ARCH=x86_64 178 | export CURRENT_VARIANT=normal 179 | export DEAD_CODE_STRIPPING=YES 180 | export DEBUGGING_SYMBOLS=YES 181 | export DEBUG_INFORMATION_FORMAT=dwarf 182 | export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0 183 | export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions 184 | export DEFINES_MODULE=NO 185 | export DEPLOYMENT_LOCATION=NO 186 | export DEPLOYMENT_POSTPROCESSING=NO 187 | export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET 188 | export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version-min 189 | export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min= 190 | export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET 191 | export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4" 192 | export DERIVED_FILES_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/DerivedSources 193 | export DERIVED_FILE_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/DerivedSources 194 | export DERIVED_SOURCES_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/DerivedSources 195 | export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Applications 196 | export DEVELOPER_BIN_DIR=/Applications/Xcode-9.4.app/Contents/Developer/usr/bin 197 | export DEVELOPER_DIR=/Applications/Xcode-9.4.app/Contents/Developer 198 | export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Library/Frameworks 199 | export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode-9.4.app/Contents/Developer/Library/Frameworks 200 | export DEVELOPER_LIBRARY_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Library 201 | export DEVELOPER_SDK_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs 202 | export DEVELOPER_TOOLS_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Tools 203 | export DEVELOPER_USR_DIR=/Applications/Xcode-9.4.app/Contents/Developer/usr 204 | export DEVELOPMENT_LANGUAGE=English 205 | export DOCUMENTATION_FOLDER_PATH=Basic.app/English.lproj/Documentation 206 | export DO_HEADER_SCANNING_IN_JAM=NO 207 | export DSTROOT=/tmp/Basic.dst 208 | export DT_TOOLCHAIN_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain 209 | export DWARF_DSYM_FILE_NAME=Basic.app.dSYM 210 | export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO 211 | export DWARF_DSYM_FOLDER_PATH=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator 212 | export EFFECTIVE_PLATFORM_NAME=-iphonesimulator 213 | export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO 214 | export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO 215 | export ENABLE_BITCODE=NO 216 | export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES 217 | export ENABLE_HEADER_DEPENDENCIES=YES 218 | export ENABLE_ON_DEMAND_RESOURCES=YES 219 | export ENABLE_STRICT_OBJC_MSGSEND=YES 220 | export ENABLE_TESTABILITY=YES 221 | export ENTITLEMENTS_REQUIRED=YES 222 | export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS" 223 | export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj" 224 | export EXECUTABLES_FOLDER_PATH=Basic.app/Executables 225 | export EXECUTABLE_FOLDER_PATH=Basic.app 226 | export EXECUTABLE_NAME=Basic 227 | export EXECUTABLE_PATH=Basic.app/Basic 228 | export EXPANDED_CODE_SIGN_IDENTITY=- 229 | export EXPANDED_CODE_SIGN_IDENTITY_NAME=- 230 | export EXPANDED_PROVISIONING_PROFILE= 231 | export FILE_LIST=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Objects/LinkFileList 232 | export FIXED_FILES_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/FixedFiles 233 | export FRAMEWORKS_FOLDER_PATH=Basic.app/Frameworks 234 | export FRAMEWORK_FLAG_PREFIX=-framework 235 | export FRAMEWORK_SEARCH_PATHS="/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator " 236 | export FRAMEWORK_VERSION=A 237 | export FULL_PRODUCT_NAME=Basic.app 238 | export GCC3_VERSION=3.3 239 | export GCC_C_LANGUAGE_STANDARD=gnu99 240 | export GCC_DYNAMIC_NO_PIC=NO 241 | export GCC_INLINES_ARE_PRIVATE_EXTERN=YES 242 | export GCC_NO_COMMON_BLOCKS=YES 243 | export GCC_OBJC_LEGACY_DISPATCH=YES 244 | export GCC_OPTIMIZATION_LEVEL=0 245 | export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++" 246 | export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 " 247 | export GCC_SYMBOLS_PRIVATE_EXTERN=NO 248 | export GCC_TREAT_WARNINGS_AS_ERRORS=NO 249 | export GCC_VERSION=com.apple.compilers.llvm.clang.1_0 250 | export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0 251 | export GCC_WARN_64_TO_32_BIT_CONVERSION=YES 252 | export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR 253 | export GCC_WARN_UNDECLARED_SELECTOR=YES 254 | export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE 255 | export GCC_WARN_UNUSED_FUNCTION=YES 256 | export GCC_WARN_UNUSED_VARIABLE=YES 257 | export GENERATE_MASTER_OBJECT_FILE=NO 258 | export GENERATE_PKGINFO_FILE=YES 259 | export GENERATE_PROFILING_CODE=NO 260 | export GENERATE_TEXT_BASED_STUBS=NO 261 | export GID=20 262 | export GROUP=staff 263 | export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES 264 | export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES 265 | export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES 266 | export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES 267 | export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES 268 | export HEADERMAP_USES_VFS=NO 269 | export HEADER_SEARCH_PATHS="/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/include " 270 | export HIDE_BITCODE_SYMBOLS=YES 271 | export HOME=/Users/jerrymarino 272 | export ICONV=/usr/bin/iconv 273 | export INFOPLIST_EXPAND_BUILD_SETTINGS=YES 274 | export INFOPLIST_FILE=Basic/Info.plist 275 | export INFOPLIST_OUTPUT_FORMAT=binary 276 | export INFOPLIST_PATH=Basic.app/Info.plist 277 | export INFOPLIST_PREPROCESS=NO 278 | export INFOSTRINGS_PATH=Basic.app/English.lproj/InfoPlist.strings 279 | export INLINE_PRIVATE_FRAMEWORKS=NO 280 | export INSTALLHDRS_COPY_PHASE=NO 281 | export INSTALLHDRS_SCRIPT_PHASE=NO 282 | export INSTALL_DIR=/tmp/Basic.dst/Applications 283 | export INSTALL_GROUP=staff 284 | export INSTALL_MODE_FLAG=u+w,go-w,a+rX 285 | export INSTALL_OWNER=jerrymarino 286 | export INSTALL_PATH=/Applications 287 | export INSTALL_ROOT=/tmp/Basic.dst 288 | export IPHONEOS_DEPLOYMENT_TARGET=10.3 289 | export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8" 290 | export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub 291 | export JAVA_ARCHIVE_CLASSES=YES 292 | export JAVA_ARCHIVE_TYPE=JAR 293 | export JAVA_COMPILER=/usr/bin/javac 294 | export JAVA_FOLDER_PATH=Basic.app/Java 295 | export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources 296 | export JAVA_JAR_FLAGS=cv 297 | export JAVA_SOURCE_SUBDIR=. 298 | export JAVA_USE_DEPENDENCIES=YES 299 | export JAVA_ZIP_FLAGS=-urg 300 | export JIKES_DEFAULT_FLAGS="+E +OLDCSO" 301 | export KEEP_PRIVATE_EXTERNS=NO 302 | export LD_DEPENDENCY_INFO_FILE=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Objects-normal/x86_64/Basic_dependency_info.dat 303 | export LD_GENERATE_MAP_FILE=NO 304 | export LD_MAP_FILE_PATH=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Basic-LinkMap-normal-x86_64.txt 305 | export LD_NO_PIE=NO 306 | export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES 307 | export LD_RUNPATH_SEARCH_PATHS=" @executable_path/Frameworks" 308 | export LEGACY_DEVELOPER_DIR=/Applications/Xcode-9.4.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer 309 | export LEX=lex 310 | export LIBRARY_FLAG_NOSPACE=YES 311 | export LIBRARY_FLAG_PREFIX=-l 312 | export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions 313 | export LIBRARY_SEARCH_PATHS="/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator " 314 | export LINKER_DISPLAYS_MANGLED_NAMES=NO 315 | export LINK_FILE_LIST_normal_x86_64=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Objects-normal/x86_64/Basic.LinkFileList 316 | export LINK_WITH_STANDARD_LIBRARIES=YES 317 | export LOCALIZABLE_CONTENT_DIR= 318 | export LOCALIZED_RESOURCES_FOLDER_PATH=Basic.app/English.lproj 319 | export LOCALIZED_STRING_MACRO_NAMES="NSLocalizedString CFLocalizedString" 320 | export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities 321 | export LOCAL_APPS_DIR=/Applications 322 | export LOCAL_DEVELOPER_DIR=/Library/Developer 323 | export LOCAL_LIBRARY_DIR=/Library 324 | export LOCROOT= 325 | export LOCSYMROOT= 326 | export MACH_O_TYPE=mh_execute 327 | export MAC_OS_X_PRODUCT_BUILD_VERSION=17D47 328 | export MAC_OS_X_VERSION_ACTUAL=101303 329 | export MAC_OS_X_VERSION_MAJOR=101300 330 | export MAC_OS_X_VERSION_MINOR=1303 331 | export METAL_LIBRARY_FILE_BASE=default 332 | export METAL_LIBRARY_OUTPUT_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app 333 | export MODULE_CACHE_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/ModuleCache.noindex 334 | export MTL_ENABLE_DEBUG_INFO=YES 335 | export NATIVE_ARCH=i386 336 | export NATIVE_ARCH_32_BIT=i386 337 | export NATIVE_ARCH_64_BIT=x86_64 338 | export NATIVE_ARCH_ACTUAL=x86_64 339 | export NO_COMMON=YES 340 | export OBJC_ABI_VERSION=2 341 | export OBJECT_FILE_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Objects 342 | export OBJECT_FILE_DIR_normal=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Objects-normal 343 | export OBJROOT=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex 344 | export ONLY_ACTIVE_ARCH=YES 345 | export OS=MACOS 346 | export OSAC=/usr/bin/osacompile 347 | export OTHER_SWIFT_FLAGS=-parseable-output 348 | export PACKAGE_TYPE=com.apple.package-type.wrapper.application 349 | export PASCAL_STRINGS=YES 350 | export PATH="/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode-9.4.app/Contents/Developer/usr/bin:/Applications/Xcode-9.4.app/Contents/Developer/usr/local/bin:/Applications/Xcode-9.4.app/Contents/Developer/Tools:/usr/local/opt/openssl/bin:/usr/local/bin:/usr/local/share/npm/bin:/Users/jerrymarino/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin:/usr/bin:/bin:/usr/sbin:/sbin" 351 | export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode-9.4.app/Contents/Developer/Headers /Applications/Xcode-9.4.app/Contents/Developer/SDKs /Applications/Xcode-9.4.app/Contents/Developer/Platforms" 352 | export PBDEVELOPMENTPLIST_PATH=Basic.app/pbdevelopment.plist 353 | export PKGINFO_FILE_PATH=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/PkgInfo 354 | export PKGINFO_PATH=Basic.app/PkgInfo 355 | export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications 356 | export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin 357 | export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode-9.4.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library 358 | export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs 359 | export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools 360 | export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr 361 | export PLATFORM_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform 362 | export PLATFORM_DISPLAY_NAME="iOS Simulator" 363 | export PLATFORM_NAME=iphonesimulator 364 | export PLATFORM_PREFERRED_ARCH=x86_64 365 | export PLIST_FILE_OUTPUT_FORMAT=binary 366 | export PLUGINS_FOLDER_PATH=Basic.app/PlugIns 367 | export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES 368 | export PRECOMP_DESTINATION_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/PrefixHeaders 369 | export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO 370 | export PRIVATE_HEADERS_FOLDER_PATH=Basic.app/PrivateHeaders 371 | export PRODUCT_BUNDLE_IDENTIFIER=ssvim.Basic 372 | export PRODUCT_MODULE_NAME=Basic 373 | export PRODUCT_NAME=Basic 374 | export PRODUCT_SETTINGS_PATH=/Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS/Basic/Info.plist 375 | export PRODUCT_TYPE=com.apple.product-type.application 376 | export PROFILING_CODE=NO 377 | export PROJECT=Basic 378 | export PROJECT_DERIVED_FILE_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/DerivedSources 379 | export PROJECT_DIR=/Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS 380 | export PROJECT_FILE_PATH=/Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS/Basic.xcodeproj 381 | export PROJECT_NAME=Basic 382 | export PROJECT_TEMP_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build 383 | export PROJECT_TEMP_ROOT=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex 384 | export PUBLIC_HEADERS_FOLDER_PATH=Basic.app/Headers 385 | export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES 386 | export REMOVE_CVS_FROM_RESOURCES=YES 387 | export REMOVE_GIT_FROM_RESOURCES=YES 388 | export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES 389 | export REMOVE_HG_FROM_RESOURCES=YES 390 | export REMOVE_SVN_FROM_RESOURCES=YES 391 | export REZ_COLLECTOR_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/ResourceManagerResources 392 | export REZ_OBJECTS_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/ResourceManagerResources/Objects 393 | export REZ_SEARCH_PATHS="/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator " 394 | export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO 395 | export SCRIPTS_FOLDER_PATH=Basic.app/Scripts 396 | export SCRIPT_INPUT_FILE_COUNT=0 397 | export SCRIPT_OUTPUT_FILE_COUNT=0 398 | export SDKROOT=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk 399 | export SDK_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk 400 | export SDK_DIR_iphonesimulator11_4=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk 401 | export SDK_NAME=iphonesimulator11.4 402 | export SDK_NAMES=iphonesimulator11.4 403 | export SDK_PRODUCT_BUILD_VERSION=15F79 404 | export SDK_VERSION=11.4 405 | export SDK_VERSION_ACTUAL=110400 406 | export SDK_VERSION_MAJOR=110000 407 | export SDK_VERSION_MINOR=400 408 | export SED=/usr/bin/sed 409 | export SEPARATE_STRIP=NO 410 | export SEPARATE_SYMBOL_EDIT=NO 411 | export SET_DIR_MODE_OWNER_GROUP=YES 412 | export SET_FILE_MODE_OWNER_GROUP=NO 413 | export SHALLOW_BUNDLE=YES 414 | export SHARED_DERIVED_FILE_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/DerivedSources 415 | export SHARED_FRAMEWORKS_FOLDER_PATH=Basic.app/SharedFrameworks 416 | export SHARED_PRECOMPS_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/PrecompiledHeaders 417 | export SHARED_SUPPORT_FOLDER_PATH=Basic.app/SharedSupport 418 | export SKIP_INSTALL=NO 419 | export SOURCE_ROOT=/Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS 420 | export SRCROOT=/Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS 421 | export STRINGS_FILE_OUTPUT_ENCODING=binary 422 | export STRIP_BITCODE_FROM_COPIED_FILES=NO 423 | export STRIP_INSTALLED_PRODUCT=YES 424 | export STRIP_STYLE=all 425 | export STRIP_SWIFT_SYMBOLS=YES 426 | export SUPPORTED_DEVICE_FAMILIES=1,2 427 | export SUPPORTED_PLATFORMS="iphonesimulator iphoneos" 428 | export SUPPORTS_TEXT_BASED_API=NO 429 | export SWIFT_ACTIVE_COMPILATION_CONDITIONS=DEBUG 430 | export SWIFT_OPTIMIZATION_LEVEL=-Onone 431 | export SWIFT_PLATFORM_TARGET_PREFIX=ios 432 | export SWIFT_VERSION=3.0 433 | export SYMROOT=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products 434 | export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities 435 | export SYSTEM_APPS_DIR=/Applications 436 | export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices 437 | export SYSTEM_DEMOS_DIR=/Applications/Extras 438 | export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Applications 439 | export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode-9.4.app/Contents/Developer/usr/bin 440 | export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode-9.4.app/Contents/Developer/Applications/Utilities/Built Examples" 441 | export SYSTEM_DEVELOPER_DIR=/Applications/Xcode-9.4.app/Contents/Developer 442 | export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode-9.4.app/Contents/Developer/ADC Reference Library" 443 | export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode-9.4.app/Contents/Developer/Applications/Graphics Tools" 444 | export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode-9.4.app/Contents/Developer/Applications/Java Tools" 445 | export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode-9.4.app/Contents/Developer/Applications/Performance Tools" 446 | export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode-9.4.app/Contents/Developer/ADC Reference Library/releasenotes" 447 | export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode-9.4.app/Contents/Developer/Tools 448 | export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode-9.4.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools" 449 | export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode-9.4.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools" 450 | export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode-9.4.app/Contents/Developer/usr 451 | export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Applications/Utilities 452 | export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation 453 | export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions 454 | export SYSTEM_LIBRARY_DIR=/System/Library 455 | export TAPI_VERIFY_MODE=ErrorsOnly 456 | export TARGETED_DEVICE_FAMILY=1,2 457 | export TARGETNAME=Basic 458 | export TARGET_BUILD_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator 459 | export TARGET_DEVICE_IDENTIFIER="dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder" 460 | export TARGET_NAME=Basic 461 | export TARGET_TEMP_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build 462 | export TEMP_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build 463 | export TEMP_FILES_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build 464 | export TEMP_FILE_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build 465 | export TEMP_ROOT=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex 466 | export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault 467 | export TOOLCHAIN_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain 468 | export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO 469 | export UID=501 470 | export UNLOCALIZED_RESOURCES_FOLDER_PATH=Basic.app 471 | export UNSTRIPPED_PRODUCT=NO 472 | export USER=jerrymarino 473 | export USER_APPS_DIR=/Users/jerrymarino/Applications 474 | export USER_LIBRARY_DIR=/Users/jerrymarino/Library 475 | export USE_DYNAMIC_NO_PIC=YES 476 | export USE_HEADERMAP=YES 477 | export USE_HEADER_SYMLINKS=NO 478 | export VALIDATE_PRODUCT=NO 479 | export VALID_ARCHS="i386 x86_64" 480 | export VERBOSE_PBXCP=NO 481 | export VERSIONPLIST_PATH=Basic.app/version.plist 482 | export VERSION_INFO_BUILDER=jerrymarino 483 | export VERSION_INFO_FILE=Basic_vers.c 484 | export VERSION_INFO_STRING="\"@(#)PROGRAM:Basic PROJECT:Basic-\"" 485 | export WRAPPER_EXTENSION=app 486 | export WRAPPER_NAME=Basic.app 487 | export WRAPPER_SUFFIX=.app 488 | export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO 489 | export XCODE_APP_SUPPORT_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Library/Xcode 490 | export XCODE_PRODUCT_BUILD_VERSION=9F1027a 491 | export XCODE_VERSION_ACTUAL=0940 492 | export XCODE_VERSION_MAJOR=0900 493 | export XCODE_VERSION_MINOR=0940 494 | export XPCSERVICES_FOLDER_PATH=Basic.app/XPCServices 495 | export YACC=yacc 496 | export arch=x86_64 497 | export diagnostic_message_length=165 498 | export variant=normal 499 | /bin/sh -c /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Script-100DC0F41ED1F7DE001C2E5A.sh 500 | /usr/local/bin/XCCompilationDB 501 | HEADERMAP_INCLUDES_PROJECT_HEADERS=YES 502 | COPY_PHASE_STRIP=NO 503 | JAVA_ZIP_FLAGS=-urg 504 | ENABLE_STRICT_OBJC_MSGSEND=YES 505 | LOCAL_APPS_DIR=/Applications 506 | SDK_PRODUCT_BUILD_VERSION=15F79 507 | SWIFT_OPTIMIZATION_LEVEL=-Onone 508 | REMOVE_CVS_FROM_RESOURCES=YES 509 | SED=/usr/bin/sed 510 | EXECUTABLES_FOLDER_PATH=Basic.app/Executables 511 | SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Applications/Utilities 512 | ENABLE_ON_DEMAND_RESOURCES=YES 513 | PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO 514 | SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR=/Applications/Xcode-9.4.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools 515 | PRODUCT_NAME=Basic 516 | UNLOCALIZED_RESOURCES_FOLDER_PATH=Basic.app 517 | TEMP_FILES_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build 518 | OTHER_SWIFT_FLAGS=-parseable-output 519 | SWIFT_PLATFORM_TARGET_PREFIX=ios 520 | LD_GENERATE_MAP_FILE=NO 521 | DEVELOPER_DIR=/Applications/Xcode-9.4.app/Contents/Developer 522 | USE_DYNAMIC_NO_PIC=YES 523 | LIBRARY_FLAG_NOSPACE=YES 524 | REZ_COLLECTOR_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/ResourceManagerResources 525 | TERM_PROGRAM=iTerm.app 526 | DEVELOPER_SDK_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs 527 | MAC_OS_X_PRODUCT_BUILD_VERSION=17D47 528 | CLANG_WARN_EMPTY_BODY=YES 529 | LD_DEPENDENCY_INFO_FILE=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Objects-normal/x86_64/Basic_dependency_info.dat 530 | GCC_SYMBOLS_PRIVATE_EXTERN=NO 531 | GCC_C_LANGUAGE_STANDARD=gnu99 532 | TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault 533 | GCC_WARN_UNUSED_FUNCTION=YES 534 | APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools 535 | DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode-9.4.app/Contents/Developer/Library/Frameworks 536 | NATIVE_ARCH_64_BIT=x86_64 537 | LIBRARY_FLAG_PREFIX=-l 538 | PRIVATE_HEADERS_FOLDER_PATH=Basic.app/PrivateHeaders 539 | SHELL=/bin/bash 540 | CONFIGURATION=Debug 541 | GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR 542 | TAPI_VERIFY_MODE=ErrorsOnly 543 | TERM=screen-256color 544 | ENABLE_BITCODE=NO 545 | PROJECT=Basic 546 | VERSION_INFO_BUILDER=jerrymarino 547 | PLUGINS_FOLDER_PATH=Basic.app/PlugIns 548 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO 549 | OBJROOT=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex 550 | COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES 551 | SYSTEM_DEVELOPER_DIR=/Applications/Xcode-9.4.app/Contents/Developer 552 | DT_TOOLCHAIN_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain 553 | SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode-9.4.app/Contents/Developer/Tools 554 | PRODUCT_TYPE=com.apple.product-type.application 555 | MACH_O_TYPE=mh_execute 556 | DEVELOPMENT_LANGUAGE=English 557 | TMPDIR=/var/folders/x3/p1grs9_x7cd5m4dkpp33mw2m0000gn/T/ 558 | SYSTEM_DOCUMENTATION_DIR=/Library/Documentation 559 | INSTALL_DIR=/tmp/Basic.dst/Applications 560 | PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr 561 | Apple_PubSub_Socket_Render=/private/tmp/com.apple.launchd.gLH2KYDSVg/Render 562 | CLANG_WARN_ENUM_CONVERSION=YES 563 | CLASS_FILE_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/JavaClasses 564 | TARGET_BUILD_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator 565 | CLANG_WARN_DOCUMENTATION_COMMENTS=YES 566 | METAL_LIBRARY_FILE_BASE=default 567 | CONFIGURATION_TEMP_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator 568 | JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub 569 | PBDEVELOPMENTPLIST_PATH=Basic.app/pbdevelopment.plist 570 | WRAPPER_EXTENSION=app 571 | CLEAN_PRECOMPS=YES 572 | variant=normal 573 | PLIST_FILE_OUTPUT_FORMAT=binary 574 | GENERATE_TEXT_BASED_STUBS=NO 575 | SYSTEM_DEVELOPER_DOC_DIR=/Applications/Xcode-9.4.app/Contents/Developer/ADC Reference Library 576 | SHARED_SUPPORT_FOLDER_PATH=Basic.app/SharedSupport 577 | ARCHS_STANDARD_32_64_BIT=i386 x86_64 578 | TARGETED_DEVICE_FAMILY=1,2 579 | SDKROOT=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk 580 | EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO 581 | GCC_WARN_UNDECLARED_SELECTOR=YES 582 | NATIVE_ARCH_32_BIT=i386 583 | MAC_OS_X_VERSION_MINOR=1303 584 | APPLE_INTERNAL_DIR=/AppleInternal 585 | AVAILABLE_PLATFORMS=appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator 586 | DSTROOT=/tmp/Basic.dst 587 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION=YES_AGGRESSIVE 588 | REMOVE_HG_FROM_RESOURCES=YES 589 | LIBRARY_SEARCH_PATHS=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator 590 | USER_LIBRARY_DIR=/Users/jerrymarino/Library 591 | PLATFORM_NAME=iphonesimulator 592 | BUILD_VARIANTS=normal 593 | SYSTEM_DEVELOPER_RELEASENOTES_DIR=/Applications/Xcode-9.4.app/Contents/Developer/ADC Reference Library/releasenotes 594 | INFOPLIST_PREPROCESS=NO 595 | OS=MACOS 596 | SDK_NAME=iphonesimulator11.4 597 | TARGET_DEVICE_IDENTIFIER=dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder 598 | GCC_INLINES_ARE_PRIVATE_EXTERN=YES 599 | LOCALIZED_RESOURCES_FOLDER_PATH=Basic.app/English.lproj 600 | SDK_VERSION_ACTUAL=110400 601 | TEMP_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build 602 | LD_MAP_FILE_PATH=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Basic-LinkMap-normal-x86_64.txt 603 | DERIVED_FILES_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/DerivedSources 604 | CONFIGURATION_BUILD_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator 605 | DEFINES_MODULE=NO 606 | XCODE_PRODUCT_BUILD_VERSION=9F1027a 607 | APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer 608 | EFFECTIVE_PLATFORM_NAME=-iphonesimulator 609 | CLANG_WARN_UNREACHABLE_CODE=YES 610 | WRAPPER_SUFFIX=.app 611 | GCC_PFE_FILE_C_DIALECTS=c objective-c c++ objective-c++ 612 | PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES=/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode-9.4.app/Contents/Developer/Headers /Applications/Xcode-9.4.app/Contents/Developer/SDKs /Applications/Xcode-9.4.app/Contents/Developer/Platforms 613 | DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Applications 614 | DEPLOYMENT_TARGET_SUGGESTED_VALUES=8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 615 | OBJECT_FILE_DIR_normal=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Objects-normal 616 | VERSION_INFO_STRING="@(#)PROGRAM:Basic PROJECT:Basic-" 617 | USER=jerrymarino 618 | GROUP=staff 619 | DOCUMENTATION_FOLDER_PATH=Basic.app/English.lproj/Documentation 620 | CLANG_MODULES_BUILD_SESSION_FILE=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation 621 | EXECUTABLE_PATH=Basic.app/Basic 622 | OSAC=/usr/bin/osacompile 623 | INSTALLHDRS_SCRIPT_PHASE=NO 624 | JAVA_JAR_FLAGS=cv 625 | COMPILER_INDEX_STORE_ENABLE=Default 626 | CURRENT_ARCH=x86_64 627 | TARGET_NAME=Basic 628 | DEPLOYMENT_POSTPROCESSING=NO 629 | SDK_VERSION_MAJOR=110000 630 | CLANG_ANALYZER_NONNULL=YES 631 | COMMAND_MODE=legacy 632 | WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO 633 | CLONE_HEADERS=NO 634 | TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO 635 | CLANG_WARN_SUSPICIOUS_MOVE=YES 636 | STRIP_STYLE=all 637 | EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES=*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj 638 | YACC=yacc 639 | GCC3_VERSION=3.3 640 | DEVELOPER_USR_DIR=/Applications/Xcode-9.4.app/Contents/Developer/usr 641 | CLANG_ENABLE_OBJC_ARC=YES 642 | SSH_AUTH_SOCK=/private/tmp/com.apple.launchd.x7i8XcDaUC/Listeners 643 | TARGETNAME=Basic 644 | VERSIONPLIST_PATH=Basic.app/version.plist 645 | SYSTEM_APPS_DIR=/Applications 646 | PLATFORM_PREFERRED_ARCH=x86_64 647 | VALIDATE_PRODUCT=NO 648 | OBJECT_FILE_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Objects 649 | BUILT_PRODUCTS_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator 650 | SWIFT_ACTIVE_COMPILATION_CONDITIONS=DEBUG 651 | __CF_USER_TEXT_ENCODING=0x1F5:0x0:0x0 652 | MODULE_CACHE_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/ModuleCache.noindex 653 | XCODE_VERSION_ACTUAL=0940 654 | HEADER_SEARCH_PATHS=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/include 655 | ICONV=/usr/bin/iconv 656 | STRIP_BITCODE_FROM_COPIED_FILES=NO 657 | XCODE_APP_SUPPORT_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Library/Xcode 658 | CORRESPONDING_DEVICE_SDK_NAME=iphoneos11.4 659 | PACKAGE_TYPE=com.apple.package-type.wrapper.application 660 | PKGINFO_PATH=Basic.app/PkgInfo 661 | GCC_VERSION=com.apple.compilers.llvm.clang.1_0 662 | GCC_OPTIMIZATION_LEVEL=0 663 | GCC_WARN_64_TO_32_BIT_CONVERSION=YES 664 | DO_HEADER_SCANNING_IN_JAM=NO 665 | LOCAL_ADMIN_APPS_DIR=/Applications/Utilities 666 | DERIVED_FILE_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/DerivedSources 667 | USER_APPS_DIR=/Users/jerrymarino/Applications 668 | DERIVED_SOURCES_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/DerivedSources 669 | SCRIPT_OUTPUT_FILE_COUNT=0 670 | REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES 671 | ARCHS_STANDARD=i386 x86_64 672 | ENABLE_HEADER_DEPENDENCIES=YES 673 | SDK_VERSION=11.4 674 | SET_FILE_MODE_OWNER_GROUP=NO 675 | ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES 676 | DWARF_DSYM_FOLDER_PATH=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator 677 | SDK_NAMES=iphonesimulator11.4 678 | DEAD_CODE_STRIPPING=YES 679 | COPYING_PRESERVES_HFS_DATA=NO 680 | EXPANDED_CODE_SIGN_IDENTITY_NAME=- 681 | PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES 682 | ARCHS_STANDARD_INCLUDING_64_BIT=i386 x86_64 683 | GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0 684 | SYSTEM_DEMOS_DIR=/Applications/Extras 685 | PRODUCT_BUNDLE_IDENTIFIER=ssvim.Basic 686 | TMUX=/private/tmp/tmux-501/default,483,5 687 | SHARED_DERIVED_FILE_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/DerivedSources 688 | BUILD_COMPONENTS=headers build 689 | GCC_TREAT_WARNINGS_AS_ERRORS=NO 690 | DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO 691 | REZ_SEARCH_PATHS=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator 692 | CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR 693 | ALTERNATE_MODE=u+w,go-w,a+rX 694 | JAVA_USE_DEPENDENCIES=YES 695 | GCC_OBJC_LEGACY_DISPATCH=YES 696 | DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min= 697 | INSTALL_GROUP=staff 698 | PATH=/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode-9.4.app/Contents/Developer/usr/bin:/Applications/Xcode-9.4.app/Contents/Developer/usr/local/bin:/Applications/Xcode-9.4.app/Contents/Developer/Tools:/usr/local/opt/openssl/bin:/usr/local/bin:/usr/local/share/npm/bin:/Users/jerrymarino/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin:/usr/bin:/bin:/usr/sbin:/sbin 699 | CLANG_ENABLE_MODULES=YES 700 | ACTION=build 701 | COPY_HEADERS_RUN_UNIFDEF=NO 702 | INSTALL_MODE_FLAG=u+w,go-w,a+rX 703 | DEVELOPER_TOOLS_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Tools 704 | ONLY_ACTIVE_ARCH=YES 705 | CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos 706 | CODE_SIGNING_ALLOWED=YES 707 | INFOPLIST_OUTPUT_FORMAT=binary 708 | BITCODE_GENERATION_MODE=marker 709 | STRINGS_FILE_OUTPUT_ENCODING=binary 710 | CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk 711 | FULL_PRODUCT_NAME=Basic.app 712 | PROJECT_NAME=Basic 713 | LOCSYMROOT= 714 | HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES 715 | SHARED_PRECOMPS_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/PrecompiledHeaders 716 | DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET 717 | SEPARATE_STRIP=NO 718 | COMPRESS_PNG_FILES=YES 719 | BUILD_ACTIVE_RESOURCES_ONLY=YES 720 | INSTALLHDRS_COPY_PHASE=NO 721 | EXPANDED_CODE_SIGN_IDENTITY=- 722 | SDK_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk 723 | STRIP_SWIFT_SYMBOLS=YES 724 | GID=20 725 | JAVAC_DEFAULT_FLAGS=-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8 726 | PLATFORM_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform 727 | SDK_DIR_iphonesimulator11_4=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk 728 | PWD=/Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS 729 | STRIP_INSTALLED_PRODUCT=YES 730 | INSTALL_OWNER=jerrymarino 731 | CONTENTS_FOLDER_PATH=Basic.app 732 | FILE_LIST=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Objects/LinkFileList 733 | FRAMEWORK_SEARCH_PATHS=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator 734 | CCHROOT=/var/folders/x3/p1grs9_x7cd5m4dkpp33mw2m0000gn/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode 735 | JAVA_FRAMEWORK_RESOURCES_DIRS=Resources 736 | REMOVE_GIT_FROM_RESOURCES=YES 737 | PROJECT_FILE_PATH=/Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS/Basic.xcodeproj 738 | APPLICATION_EXTENSION_API_ONLY=NO 739 | PRODUCT_MODULE_NAME=Basic 740 | GCC_DYNAMIC_NO_PIC=NO 741 | EXECUTABLE_NAME=Basic 742 | SUPPORTED_DEVICE_FAMILIES=1,2 743 | NO_COMMON=YES 744 | LD_RUNPATH_SEARCH_PATHS= @executable_path/Frameworks 745 | CREATE_INFOPLIST_SECTION_IN_BINARY=NO 746 | HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES 747 | UNSTRIPPED_PRODUCT=NO 748 | SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Applications/Graphics Tools 749 | PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications 750 | VERSION_INFO_FILE=Basic_vers.c 751 | LANG=en_US.UTF-8 752 | DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions 753 | JAVA_COMPILER=/usr/bin/javac 754 | JAVA_SOURCE_SUBDIR=. 755 | DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0 756 | DEPLOYMENT_LOCATION=NO 757 | CODE_SIGNING_REQUIRED=YES 758 | AD_HOC_CODE_SIGNING_ALLOWED=YES 759 | CLANG_CXX_LIBRARY=libc++ 760 | SEPARATE_SYMBOL_EDIT=NO 761 | ITERM_PROFILE=Default 762 | INFOPLIST_PATH=Basic.app/Info.plist 763 | LOCAL_DEVELOPER_DIR=/Library/Developer 764 | SRCROOT=/Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS 765 | LOCALIZABLE_CONTENT_DIR= 766 | DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Library/Frameworks 767 | REZ_OBJECTS_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/ResourceManagerResources/Objects 768 | PROJECT_DIR=/Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS 769 | PASCAL_STRINGS=YES 770 | CHOWN=/usr/sbin/chown 771 | SYSTEM_DEVELOPER_JAVA_TOOLS_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Applications/Java Tools 772 | JAVA_FOLDER_PATH=Basic.app/Java 773 | TMUX_PANE=%115 774 | PUBLIC_HEADERS_FOLDER_PATH=Basic.app/Headers 775 | TEMP_FILE_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build 776 | COMPOSITE_SDK_DIRS=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/CompositeSDKs 777 | XPC_FLAGS=0x0 778 | METAL_LIBRARY_OUTPUT_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app 779 | EMBEDDED_CONTENT_CONTAINS_SWIFT=NO 780 | DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version-min 781 | CODE_SIGN_CONTEXT_CLASS=XCiPhoneSimulatorCodeSignContext 782 | MAC_OS_X_VERSION_MAJOR=101300 783 | PROJECT_TEMP_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build 784 | GCC_NO_COMMON_BLOCKS=YES 785 | SKIP_INSTALL=NO 786 | SCRIPT_INPUT_FILE_COUNT=0 787 | LOCALIZED_STRING_MACRO_NAMES=NSLocalizedString CFLocalizedString 788 | SYMROOT=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products 789 | CP=/bin/cp 790 | ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon 791 | JAVA_ARCHIVE_CLASSES=YES 792 | PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools 793 | XPC_SERVICE_NAME=0 794 | SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Applications 795 | DWARF_DSYM_FILE_NAME=Basic.app.dSYM 796 | PROJECT_TEMP_ROOT=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex 797 | APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation 798 | MAC_OS_X_VERSION_ACTUAL=101303 799 | LEX=lex 800 | CLANG_WARN_BOOL_CONVERSION=YES 801 | INSTALL_ROOT=/tmp/Basic.dst 802 | PLATFORM_DISPLAY_NAME=iOS Simulator 803 | MTL_ENABLE_DEBUG_INFO=YES 804 | CLANG_WARN_INFINITE_RECURSION=YES 805 | FRAMEWORK_FLAG_PREFIX=-framework 806 | SHLVL=5 807 | HIDE_BITCODE_SYMBOLS=YES 808 | COLORFGBG=7;0 809 | HOME=/Users/jerrymarino 810 | RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES 811 | LINK_FILE_LIST_normal_x86_64=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Objects-normal/x86_64/Basic.LinkFileList 812 | SET_DIR_MODE_OWNER_GROUP=YES 813 | EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=.DS_Store .svn .git .hg CVS 814 | GENERATE_PROFILING_CODE=NO 815 | APPLY_RULES_IN_COPY_FILES=NO 816 | PROFILING_CODE=NO 817 | PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode-9.4.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library 818 | SYSTEM_LIBRARY_DIR=/System/Library 819 | SDK_VERSION_MINOR=400 820 | CLANG_WARN_INT_CONVERSION=YES 821 | REMOVE_SVN_FROM_RESOURCES=YES 822 | DEVELOPER_BIN_DIR=/Applications/Xcode-9.4.app/Contents/Developer/usr/bin 823 | SWIFT_VERSION=3.0 824 | FRAMEWORKS_FOLDER_PATH=Basic.app/Frameworks 825 | XCODE_VERSION_MINOR=0940 826 | VERBOSE_PBXCP=NO 827 | SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions 828 | CORRESPONDING_DEVICE_PLATFORM_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneOS.platform 829 | VALID_ARCHS=i386 x86_64 830 | OBJC_ABI_VERSION=2 831 | LD_NO_PIE=NO 832 | COMBINE_HIDPI_IMAGES=NO 833 | CACHE_ROOT=/var/folders/x3/p1grs9_x7cd5m4dkpp33mw2m0000gn/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode 834 | SYSTEM_DEVELOPER_DEMOS_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Applications/Utilities/Built Examples 835 | INSTALL_PATH=/Applications 836 | CODE_SIGN_IDENTITY=- 837 | JAVA_ARCHIVE_TYPE=JAR 838 | SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode-9.4.app/Contents/Developer/usr/bin 839 | LEGACY_DEVELOPER_DIR=/Applications/Xcode-9.4.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer 840 | ITERM_SESSION_ID=w1t0p0 841 | GCC_PREPROCESSOR_DEFINITIONS=DEBUG=1 842 | ALWAYS_USE_SEPARATE_HEADERMAPS=NO 843 | DEBUGGING_SYMBOLS=YES 844 | PROJECT_DERIVED_FILE_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/DerivedSources 845 | EXPANDED_PROVISIONING_PROFILE= 846 | PKGINFO_FILE_PATH=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/PkgInfo 847 | CLANG_WARN__DUPLICATE_METHOD_MATCH=YES 848 | CODESIGNING_FOLDER_PATH=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app 849 | PRECOMP_DESTINATION_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/PrefixHeaders 850 | LOGNAME=jerrymarino 851 | SHALLOW_BUNDLE=YES 852 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR 853 | PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin 854 | BUILD_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products 855 | GCC_WARN_UNUSED_VARIABLE=YES 856 | ARCHS_UNIVERSAL_IPHONE_OS=i386 x86_64 857 | APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library 858 | JIKES_DEFAULT_FLAGS=+E +OLDCSO 859 | COLOR_DIAGNOSTICS=YES 860 | XCODE_VERSION_MAJOR=0900 861 | HEADERMAP_USES_VFS=NO 862 | ALWAYS_SEARCH_USER_PATHS=NO 863 | TOOLCHAIN_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain 864 | LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES 865 | LOCAL_LIBRARY_DIR=/Library 866 | LINK_WITH_STANDARD_LIBRARIES=YES 867 | INFOPLIST_FILE=Basic/Info.plist 868 | DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET 869 | CURRENT_VARIANT=normal 870 | UID=501 871 | ALTERNATE_GROUP=staff 872 | ENABLE_TESTABILITY=YES 873 | USE_HEADER_SYMLINKS=NO 874 | CLANG_CXX_LANGUAGE_STANDARD=gnu++0x 875 | LOCROOT= 876 | SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Applications/Performance Tools 877 | SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO 878 | IPHONEOS_DEPLOYMENT_TARGET=10.3 879 | SYSTEM_DEVELOPER_TOOLS_DOC_DIR=/Applications/Xcode-9.4.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools 880 | PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs 881 | SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode-9.4.app/Contents/Developer/usr 882 | SCRIPTS_FOLDER_PATH=Basic.app/Scripts 883 | KEEP_PRIVATE_EXTERNS=NO 884 | SUPPORTED_PLATFORMS=iphonesimulator iphoneos 885 | arch=x86_64 886 | XPCSERVICES_FOLDER_PATH=Basic.app/XPCServices 887 | INFOSTRINGS_PATH=Basic.app/English.lproj/InfoPlist.strings 888 | CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES 889 | GENERATE_MASTER_OBJECT_FILE=NO 890 | NATIVE_ARCH_ACTUAL=x86_64 891 | GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE 892 | INLINE_PRIVATE_FRAMEWORKS=NO 893 | DEVELOPER_LIBRARY_DIR=/Applications/Xcode-9.4.app/Contents/Developer/Library 894 | BUILD_STYLE= 895 | SHARED_FRAMEWORKS_FOLDER_PATH=Basic.app/SharedFrameworks 896 | SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices 897 | ALTERNATE_OWNER=jerrymarino 898 | INFOPLIST_EXPAND_BUILD_SETTINGS=YES 899 | ARCHS_STANDARD_64_BIT=x86_64 900 | HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES 901 | GENERATE_PKGINFO_FILE=YES 902 | LINKER_DISPLAYS_MANGLED_NAMES=NO 903 | ARCHS_STANDARD_32_BIT=i386 904 | CHMOD=/bin/chmod 905 | ARCHS=x86_64 906 | diagnostic_message_length=165 907 | DEBUG_INFORMATION_FORMAT=dwarf 908 | NATIVE_ARCH=i386 909 | TARGET_TEMP_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build 910 | CLANG_WARN_CONSTANT_CONVERSION=YES 911 | ENTITLEMENTS_REQUIRED=YES 912 | SECURITYSESSIONID=186a7 913 | WRAPPER_NAME=Basic.app 914 | HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES 915 | FRAMEWORK_VERSION=A 916 | TEMP_ROOT=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex 917 | SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities 918 | FIXED_FILES_DIR=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/FixedFiles 919 | LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions 920 | SOURCE_ROOT=/Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS 921 | EXECUTABLE_FOLDER_PATH=Basic.app 922 | SUPPORTS_TEXT_BASED_API=NO 923 | PRODUCT_SETTINGS_PATH=/Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS/Basic/Info.plist 924 | BUILD_ROOT=/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products 925 | USE_HEADERMAP=YES 926 | _=/usr/bin/printenv 927 | 928 | CopySwiftLibs /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app 929 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS 930 | export CODESIGN_ALLOCATE=/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate 931 | export DEVELOPER_DIR=/Applications/Xcode-9.4.app/Contents/Developer 932 | export PATH="/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode-9.4.app/Contents/Developer/usr/bin:/usr/local/opt/openssl/bin:/usr/local/bin:/usr/local/share/npm/bin:~/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin/:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/opt/openssl/bin:/usr/local/share/npm/bin:~/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin/" 933 | export SDKROOT=/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk 934 | builtin-swiftStdLibTool --copy --verbose --sign - --scan-executable /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Basic --scan-folder /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks --scan-folder /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/PlugIns --platform iphonesimulator --toolchain /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks --strip-bitcode --resource-destination /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app --resource-library libswiftRemoteMirror.dylib 935 | Requested Swift ABI version based on scanned binaries: 6 936 | libswiftCore.dylib is up to date at /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCore.dylib 937 | libswiftCoreFoundation.dylib is up to date at /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCoreFoundation.dylib 938 | libswiftCoreGraphics.dylib is up to date at /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCoreGraphics.dylib 939 | libswiftCoreImage.dylib is up to date at /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCoreImage.dylib 940 | libswiftDarwin.dylib is up to date at /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftDarwin.dylib 941 | libswiftDispatch.dylib is up to date at /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftDispatch.dylib 942 | libswiftFoundation.dylib is up to date at /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftFoundation.dylib 943 | libswiftMetal.dylib is up to date at /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftMetal.dylib 944 | libswiftObjectiveC.dylib is up to date at /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftObjectiveC.dylib 945 | libswiftQuartzCore.dylib is up to date at /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftQuartzCore.dylib 946 | libswiftUIKit.dylib is up to date at /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftUIKit.dylib 947 | libswiftos.dylib is up to date at /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftos.dylib 948 | libswiftRemoteMirror.dylib is up to date at /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/libswiftRemoteMirror.dylib 949 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCore.dylib 950 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCore.dylib' 951 | Codesigning /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCore.dylib 952 | /usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCore.dylib' 953 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCore.dylib 954 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCore.dylib' 955 | Code signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCore.dylib is unchanged; keeping original 956 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftQuartzCore.dylib 957 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftObjectiveC.dylib 958 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCoreFoundation.dylib 959 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftMetal.dylib 960 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftQuartzCore.dylib' 961 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftObjectiveC.dylib'Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftDarwin.dylib 962 | 963 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftDispatch.dylib 964 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCoreFoundation.dylib' 965 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftMetal.dylib' 966 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftDarwin.dylib' 967 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftDispatch.dylib' 968 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftUIKit.dylib 969 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftUIKit.dylib' 970 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCoreGraphics.dylib 971 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCoreGraphics.dylib' 972 | Codesigning /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftDispatch.dylib 973 | Codesigning /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCoreFoundation.dylib 974 | /usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftDispatch.dylib' 975 | /usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCoreFoundation.dylib' 976 | Codesigning /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftQuartzCore.dylib 977 | /usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftQuartzCore.dylib' 978 | Codesigning /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftDarwin.dylib 979 | /usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftDarwin.dylib' 980 | Codesigning /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftUIKit.dylib 981 | /usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftUIKit.dylib'Codesigning /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCoreGraphics.dylib 982 | 983 | /usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCoreGraphics.dylib' 984 | Codesigning /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftObjectiveC.dylib 985 | /usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftObjectiveC.dylib' 986 | Codesigning /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftMetal.dylib 987 | /usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftMetal.dylib' 988 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftDarwin.dylib 989 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftDarwin.dylib' 990 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCoreFoundation.dylib 991 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftQuartzCore.dylib 992 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftQuartzCore.dylib' 993 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCoreFoundation.dylib' 994 | Code signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftDarwin.dylib is unchanged; keeping original 995 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCoreImage.dylib 996 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCoreImage.dylib' 997 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftMetal.dylib 998 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftMetal.dylib' 999 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftUIKit.dylib 1000 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftUIKit.dylib' 1001 | Code signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftQuartzCore.dylib is unchanged; keeping original 1002 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftObjectiveC.dylib 1003 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftObjectiveC.dylib' 1004 | Code signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCoreFoundation.dylib is unchanged; keeping original 1005 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCoreGraphics.dylib 1006 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCoreGraphics.dylib' 1007 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftFoundation.dylib 1008 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftFoundation.dylib' 1009 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftos.dylib 1010 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftos.dylib' 1011 | Codesigning /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCoreImage.dylib 1012 | /usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCoreImage.dylib' 1013 | Code signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftUIKit.dylib is unchanged; keeping original 1014 | Code signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftMetal.dylib is unchanged; keeping original 1015 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftDispatch.dylib 1016 | Code signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftObjectiveC.dylib is unchanged; keeping original 1017 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftDispatch.dylib' 1018 | Code signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCoreGraphics.dylib is unchanged; keeping original 1019 | Codesigning /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftFoundation.dylib 1020 | /usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftFoundation.dylib' 1021 | Codesigning /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftos.dylib 1022 | /usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftos.dylib' 1023 | Code signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftDispatch.dylib is unchanged; keeping original 1024 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCoreImage.dylib 1025 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCoreImage.dylib' 1026 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftos.dylib 1027 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftos.dylib' 1028 | Code signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftCoreImage.dylib is unchanged; keeping original 1029 | Code signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftos.dylib is unchanged; keeping original 1030 | Probing signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftFoundation.dylib 1031 | /usr/bin/codesign '-r-' '--display' '/Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftFoundation.dylib' 1032 | Code signature of /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app/Frameworks/libswiftFoundation.dylib is unchanged; keeping original 1033 | 1034 | Touch /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app 1035 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS 1036 | export PATH="/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode-9.4.app/Contents/Developer/usr/bin:/usr/local/opt/openssl/bin:/usr/local/bin:/usr/local/share/npm/bin:~/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin/:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/opt/openssl/bin:/usr/local/share/npm/bin:~/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin/" 1037 | /usr/bin/touch -c /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app 1038 | 1039 | ProcessProductPackaging "" /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Basic.app.xcent 1040 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS 1041 | export PATH="/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode-9.4.app/Contents/Developer/usr/bin:/usr/local/opt/openssl/bin:/usr/local/bin:/usr/local/share/npm/bin:~/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin/:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/opt/openssl/bin:/usr/local/share/npm/bin:~/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin/" 1042 | 1043 | 1044 | Entitlements: 1045 | 1046 | { 1047 | "com.apple.security.get-task-allow" = 1; 1048 | } 1049 | 1050 | 1051 | builtin-productPackagingUtility -entitlements -format xml -o /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Basic.app.xcent 1052 | 1053 | CodeSign /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app 1054 | cd /Users/jerrymarino/Projects/SwiftVimTestHost/BasiciOS 1055 | export CODESIGN_ALLOCATE=/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate 1056 | export PATH="/Applications/Xcode-9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode-9.4.app/Contents/Developer/usr/bin:/usr/local/opt/openssl/bin:/usr/local/bin:/usr/local/share/npm/bin:~/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin/:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/opt/openssl/bin:/usr/local/share/npm/bin:~/.local/bin:/Users/jerrymarino/Library/Python/2.7/bin/" 1057 | 1058 | Signing Identity: "-" 1059 | 1060 | /usr/bin/codesign --force --sign - --entitlements /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Intermediates.noindex/Basic.build/Debug-iphonesimulator/Basic.build/Basic.app.xcent --timestamp=none /Users/jerrymarino/Library/Developer/Xcode/DerivedData/Basic-ftyuwprhnlvzhlgycfoadvbuycfe/Build/Products/Debug-iphonesimulator/Basic.app 1061 | 1062 | ** BUILD SUCCEEDED ** 1063 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | debug: 2 | swift build | tee .build/last_build.log 3 | 4 | release: 5 | swift build -c release | tee .build/last_build.log 6 | 7 | run: 8 | swift run | tee .build/last_build.log 9 | 10 | test: 11 | swift test | tee .build/last_build.log 12 | 13 | integration-test: debug 14 | .build/debug/XcodeCompilationDatabase $(PWD)/ExampleLogs/BasicOSX.txt 15 | .build/debug/XcodeCompilationDatabase $(PWD)/ExampleLogs/ExampleCpp.txt 16 | 17 | -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- 1 | // swift-tools-version:4.0 2 | // The swift-tools-version declares the minimum version of Swift required to build this package. 3 | 4 | import PackageDescription 5 | 6 | let package = Package( 7 | name: "XcodeCompilationDatabase", 8 | 9 | dependencies: [ 10 | // Dependencies declare other packages that this package depends on. 11 | // .package(url: /* package url */, from: "1.0.0"), 12 | ], 13 | targets: [ 14 | // Targets are the basic building blocks of a package. A target can define a module or a test suite. 15 | // Targets can depend on other targets in this package, and on products in packages which this package depends on. 16 | .target( 17 | name: "XcodeCompilationDatabase", 18 | dependencies: ["XcodeCompilationDatabaseCore"]), 19 | .target( 20 | name: "XcodeCompilationDatabaseCore", 21 | dependencies: []), 22 | .testTarget( 23 | name: "XcodeCompilationDatabaseTests", 24 | dependencies: ["XcodeCompilationDatabaseCore"]), 25 | ] 26 | ) 27 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Xcode Compilation Database 2 | 3 | Generate a Compilation Database from Xcode's build log - nothing more :). 4 | 5 | ### Context 6 | 7 | [Compilation Database](https://clang.llvm.org/docs/JSONCompilationDatabase.html) is a file 8 | format for storing compile commands. 9 | Program language tooling needs a Compilation Databases as input in order to 10 | setup the compiler stack; canonical uses of this format are LibTooling and 11 | clang-c. 12 | 13 | This program is mainly used to generate a _Swift_ Compilation Database for 14 | usage in [iCompleteMe](https://github.com/jerrymarino/iCompleteMe), as it 15 | requires `compile_commands.json` to determine how to setup the Swift compiler 16 | for code completion. 17 | 18 | ## Usage 19 | 20 | First, build and install. Optionally, use the install script: 21 | 22 | ``` 23 | ./install.sh 24 | ``` 25 | 26 | `tee` build output of a *clean build* to a log, and pass the result to 27 | `XCCompilationDB`. 28 | 29 | ``` 30 | xcodebuild .... | tee /path/to/last_build.log 31 | XCCompilationDB /path/to/last_build.log 32 | ``` 33 | 34 | It outputs `compile_commands.json` to the root of the `CWD`. 35 | 36 | ## Notes on unstructured log parsing 37 | 38 | There are several ways to extract this information from Xcode. 39 | XcodeCompilationDatabase is built on Xcode's unstructured logs for simplicity. 40 | Given the general stability of Xcode's log format, this approach should be 41 | somewhat maintainable. 42 | 43 | All known approaches are less than ideal, including this one. *Ideally Xcode 44 | and SwiftPM would stream a parsable log containing tool invocations, and 45 | standard error and standard out, similar to how [the Swift driver 46 | does](https://github.com/apple/swift/blob/master/docs/DriverParseableOutput.rst).* 47 | 48 | ## Alternatives 49 | 50 | There are several other implementations of this on the internet, none of which 51 | are known to have Swift support and work in this capacity. 52 | 53 | -------------------------------------------------------------------------------- /Sources/XcodeCompilationDatabase/main.swift: -------------------------------------------------------------------------------- 1 | import XcodeCompilationDatabaseCore 2 | import Foundation 3 | 4 | /// TODO: 5 | /// - Allow selection of the output path and input log 6 | /// - Read standard input 7 | /// - Merge previous compile commands database 8 | 9 | let outPath = FileManager.default.currentDirectoryPath 10 | + "/compile_commands.json" 11 | 12 | guard CommandLine.arguments.count > 1 else { 13 | print(""" 14 | usage: /path/to/xcodebuild.log 15 | """) 16 | exit(0) 17 | } 18 | 19 | let logPath = CommandLine.arguments[1] 20 | 21 | do { 22 | let log = try String(contentsOf: URL(fileURLWithPath: logPath), encoding: .utf8) 23 | let parsed = parse(log: log) 24 | let entries = getEntries(parsed: parsed) 25 | try writeEntries(entries: entries, to: outPath) 26 | } catch { 27 | fatalError(error.localizedDescription) 28 | } 29 | -------------------------------------------------------------------------------- /Sources/XcodeCompilationDatabaseCore/XcodeCompilationDatabase.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | let doubleQuote = "\"" 4 | let singleQuote = "\'" 5 | let unitQuote = "" 6 | 7 | /// Lex parts of a shell command. 8 | public func shlex(_ input: String) -> [String] { 9 | var result: [String] = [] 10 | 11 | var accumulator = "" 12 | var quote = unitQuote 13 | var escape = true 14 | 15 | let terminateLexeme = { 16 | if accumulator != "" { 17 | result.append(accumulator) 18 | accumulator = ""; 19 | } 20 | } 21 | 22 | for character in input { 23 | let str = String(character) 24 | if escape { 25 | escape = false; 26 | accumulator += str 27 | } else if str == "\\" { 28 | escape = true; 29 | } else if (quote == unitQuote && str == singleQuote) || 30 | (quote == unitQuote && str == unitQuote) { 31 | quote = str 32 | } else if (quote == singleQuote && str == singleQuote) || 33 | (quote == doubleQuote && str == doubleQuote) { 34 | quote = unitQuote 35 | } else if str != " " || quote != unitQuote { 36 | accumulator += String(str) 37 | } else { 38 | terminateLexeme() 39 | } 40 | } 41 | terminateLexeme() 42 | return result; 43 | } 44 | 45 | /// This detects tools by name. 46 | /// Consider determining tools from the names of actions in Xcodes log, for 47 | /// this doesn't work when the user sets a custom CC or SWIFT_EXEC with a name 48 | /// other than the canonical name. 49 | 50 | /// Check if the first non " " argument is clang 51 | func isCC(lexed: [String]) -> Bool { 52 | for arg in lexed { 53 | if arg == " " { 54 | continue 55 | } 56 | // Naieve checking for clanginess 57 | return arg.hasSuffix("clang") || arg.hasSuffix("clang++") 58 | } 59 | return false 60 | } 61 | 62 | /// Frontend invocations 63 | /// Currently, it uses frontend invocations to prevent duplication of Swift's 64 | /// driver. ( consider using `swiftc` instead ) 65 | func isSwiftFrontend(lexed: [String]) -> Bool { 66 | for arg in lexed { 67 | if arg == " " { 68 | continue 69 | } 70 | /// Naieve checking for swiftieness 71 | return arg.hasSuffix("swift") 72 | } 73 | return false 74 | } 75 | 76 | func swiftFileInSwiftInvocation(lexed: [String]) -> String? { 77 | var swiftSources: [String] = [] 78 | var objectFile: String = "" 79 | for arg in lexed { 80 | if arg.hasSuffix(".swift") { 81 | swiftSources.append(arg) 82 | } else if arg.hasSuffix(".o") { 83 | objectFile = arg 84 | } 85 | } 86 | 87 | if objectFile == "" { 88 | return swiftSources.first 89 | } 90 | 91 | // 1) Find the object file we are compiling. 92 | // 2) Lookup the path of the object file. 93 | let components = objectFile.components(separatedBy: "/") 94 | // Several fatal assumptions about Xcode's log output here. 95 | // FIXME: make this more sloppy/safe 96 | let objectName = components[components.count - 1].components(separatedBy: ".")[0] 97 | let swiftFile = objectName + ".swift" 98 | 99 | /// If the file is not in the list, then return the first file 100 | return swiftSources.filter { $0.hasSuffix(swiftFile) }.first ?? swiftSources.first 101 | } 102 | 103 | func workingDirectoryInSwiftInvocation(lexed: [String]) -> String? { 104 | return lexed.reversed().compactMap { 105 | arg in 106 | arg.hasPrefix("-working-directory") ? 107 | arg.replacingOccurrences(of:"-working-directory", with: "") : nil 108 | }.lazy.first 109 | } 110 | 111 | // Mark - Parsing 112 | 113 | public struct Entry: Codable { 114 | public let file: String 115 | public let command: String 116 | public let directory: String 117 | } 118 | 119 | extension Entry { 120 | public static func entry(for lexed: [String], dirHint: String? = nil) -> Entry? { 121 | let line = lexed.joined(separator: " ") 122 | if isSwiftFrontend(lexed: lexed) { 123 | guard 124 | let file = swiftFileInSwiftInvocation(lexed: lexed), 125 | let dir = workingDirectoryInSwiftInvocation(lexed: lexed) else { 126 | return nil 127 | } 128 | return Entry(file: file, command: line, directory: dir) 129 | } 130 | if isCC(lexed: lexed) { 131 | let firstFile = lexed.enumerated().compactMap { 132 | (idx, arg) -> String? in 133 | guard arg == "-c" else { return nil } 134 | return lexed[idx + 1] 135 | }.lazy.first 136 | guard 137 | let file = firstFile, 138 | let dirHint = dirHint else { return nil } 139 | return Entry(file: file, command: line, directory: dirHint) 140 | } 141 | 142 | return nil 143 | } 144 | } 145 | 146 | public enum ParsedNode { 147 | // Save the entire context for convenience. 148 | case shell(line: String, lexed: [String]) 149 | case entry(line: String, lexed: [String], entry: Entry) 150 | } 151 | 152 | /// Xcode thankfully emits the working dir of clang and env vars 153 | /// in the log 154 | /// __SPACES__ export a=b 155 | /// __SPACES__ cd /Path/To/WorkingDir 156 | func getPreviousCDAction(parsed: [ParsedNode]) -> String? { 157 | for node in parsed { 158 | // If we're looping backwards and hit a non shell command, 159 | // we've gone too far. This is an error condition and really, 160 | // it'd be better if the program was written in a way that 161 | // didn't require this in the first place. 162 | guard case let .shell(_, lexed) = node else { 163 | return nil 164 | } 165 | // __SPACES__ cd /Path/To/WorkingDir 166 | if lexed.count > 2, lexed[1] == "cd" { 167 | return lexed[2] 168 | } 169 | } 170 | return nil 171 | } 172 | 173 | /// Parse a log into a fully serialized representation 174 | public func parse(log: String) -> [ParsedNode] { 175 | // Consider moving this into shlex 176 | let lines = log.components(separatedBy: "\n") 177 | return lines.reduce(into: [ParsedNode]()) { 178 | accum, line in 179 | let lexed = shlex(line) 180 | if isSwiftFrontend(lexed: lexed) { 181 | if let entry = Entry.entry(for: lexed) { 182 | accum.append(.entry(line: line, lexed: lexed, entry: entry)) 183 | } 184 | } else if isCC(lexed: lexed) { 185 | // We need to look back at the previous 186 | guard let cdAction = getPreviousCDAction(parsed: accum) else { 187 | print("warning: unexpected usage of clang") 188 | return 189 | } 190 | if let entry = Entry.entry(for: lexed, dirHint: cdAction) { 191 | accum.append(.entry(line: line, lexed: lexed, entry: entry)) 192 | } 193 | } else if lexed.first == " " { 194 | /// Parse fragments of shell commands in Xcode. 195 | /// Assume that Xcode is putting spaces in the front of commands. 196 | accum.append(.shell(line: line, lexed: lexed)) 197 | } 198 | } 199 | } 200 | 201 | public func getEntries(parsed: [ParsedNode]) -> [Entry] { 202 | return parsed.compactMap { 203 | guard case let .entry(_, _, entry) = $0 else { 204 | return nil 205 | } 206 | return entry 207 | } 208 | } 209 | 210 | /// Mark - Utils 211 | 212 | public func writeEntries(entries: [Entry], to path: String) throws { 213 | let encoder = JSONEncoder() 214 | let data = try encoder.encode(entries) 215 | try data.write(to: URL(fileURLWithPath: path), options: .atomic) 216 | } 217 | 218 | -------------------------------------------------------------------------------- /Tests/XcodeCompilationDatabaseTests/LogParsingTests.swift: -------------------------------------------------------------------------------- 1 | import XCTest 2 | import XcodeCompilationDatabaseCore 3 | 4 | class LogParsingTests: XCTestCase { 5 | 6 | func testFrontendInvocation() { 7 | let invocation = " /Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -c -primary-file /Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX/BasicOSX/ViewController.swift /Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX/BasicOSX/AppDelegate.swift -o /Users/jerrymarino/Library/Developer/Xcode/DerivedData/BasicOSX-ewknyqiuzzuhnyahwszezoamdooo/Build/Intermediates.noindex/BasicOSX.build/Debug/BasicOSX.build/Objects-normal/x86_64/ViewController.o -Xcc -working-directory/Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX" 8 | guard let entry = Entry.entry(for: shlex(invocation)) else { 9 | XCTFail() 10 | return 11 | } 12 | XCTAssertEqual(entry.file, 13 | "/Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX/BasicOSX/ViewController.swift") 14 | XCTAssertEqual(entry.command, invocation) 15 | XCTAssertEqual(entry.directory, 16 | "/Users/jerrymarino/Projects/SwiftVimTestHost/BasicOSX") 17 | } 18 | 19 | func testClangInvocation() { 20 | let invocation = "/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -c /Some/Foo.c /Out/Foo.o -Xcc -working-directory/Some" 21 | guard let entry = Entry.entry(for: shlex(invocation), dirHint: "DIR") else { 22 | XCTFail() 23 | return 24 | } 25 | 26 | XCTAssertEqual(entry.file, "/Some/Foo.c") 27 | XCTAssertEqual(entry.command, invocation) 28 | XCTAssertEqual(entry.directory, "DIR") 29 | } 30 | 31 | func testClangLogParse() { 32 | let invocation = "/Applications/Xcode-9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -c /Some/Foo.c /Out/Foo.o" 33 | let log = """ 34 | cd /Some 35 | export FOO=Bar 36 | \(invocation) 37 | """ 38 | let parsed = parse(log: log) 39 | guard case let .shell(_, lexed) = parsed[0] else { 40 | XCTFail() 41 | return 42 | } 43 | XCTAssertEqual(lexed[1], "cd") 44 | 45 | guard case let .entry(_, _, entry) = parsed[2] else { 46 | XCTFail() 47 | return 48 | } 49 | XCTAssertEqual(entry.file, "/Some/Foo.c") 50 | // FIXME: Consider stripping off leading spaces of commands 51 | XCTAssertEqual(entry.command, " " + invocation) 52 | XCTAssertEqual(entry.directory, "/Some") 53 | 54 | let entries = getEntries(parsed: parsed) 55 | XCTAssertEqual(entries.first?.directory, "/Some") 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | make release 3 | 4 | echo "Installing to /usr/local/bin" 5 | ditto .build/release/XcodeCompilationDatabase /usr/local/bin/XCCompilationDB 6 | --------------------------------------------------------------------------------