From 4a2cb7fcefaef58a420c6aba8a3aefe2857221aa Mon Sep 17 00:00:00 2001 From: Jared Carlson Date: Wed, 16 Aug 2023 15:28:17 -0400 Subject: [PATCH 1/3] Created a new test asset, plus some cleanup of prior messing around. Some of this should never go into the master branch for sure. --- .../Sources/PBXProjParser/XcodeProject.swift | 4 +- .../ArchiveLog.txt | 524 ++ .../Calculation.xcodeproj/project.pbxproj | 467 + .../Calculation.docc/Calculation.md | 13 + .../Calculation/Calculation/Calculation.h | 18 + .../CalculationTests/CalculationTests.swift | 36 + .../LargerMaster.xcodeproj/project.pbxproj | 668 ++ .../LargerMaster/AppDelegate.swift | 36 + .../AccentColor.colorset/Contents.json | 11 + .../AppIcon.appiconset/Contents.json | 13 + .../Assets.xcassets/Contents.json | 6 + .../Base.lproj/LaunchScreen.storyboard | 25 + .../LargerMaster/Base.lproj/Main.storyboard | 24 + .../LargerMaster/LargerMaster/Info.plist | 25 + .../LargerMaster/SceneDelegate.swift | 52 + .../LargerMaster/ViewController.swift | 23 + .../LargerMasterTests/LargerMasterTests.swift | 36 + .../LargerMasterUITests.swift | 41 + .../LargerMasterUITestsLaunchTests.swift | 32 + .../LargerModule.xcodeproj/project.pbxproj | 595 ++ .../LargerModule.docc/LargerModule.md | 13 + .../LargerModule/LargerModule/LargerModule.h | 18 + .../LargerModule/LargerModule.swift | 15 + .../LargerModule/LargerModule/Module.swift | 18 + .../LargerModuleTests/LargerModuleTests.swift | 36 + .../workspace.json | 7902 +++++++++++++++++ .../xcschemes/TransitiveTestApp.xcscheme | 101 + .../StaticSpace.xcodeproj/project.pbxproj | 650 ++ .../StaticSpace/StaticSpace/AppDelegate.swift | 36 + .../AccentColor.colorset/Contents.json | 11 + .../AppIcon.appiconset/Contents.json | 13 + .../StaticSpace/Assets.xcassets/Contents.json | 6 + .../Base.lproj/LaunchScreen.storyboard | 25 + .../StaticSpace/Base.lproj/Main.storyboard | 24 + .../StaticSpace/StaticSpace/Info.plist | 25 + .../StaticSpace/SceneDelegate.swift | 52 + .../StaticSpace/ViewController.swift | 25 + .../StaticSpaceTests/StaticSpaceTests.swift | 36 + .../StaticSpaceUITests.swift | 41 + .../StaticSpaceUITestsLaunchTests.swift | 32 + .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../SwiftMath/.gitignore | 9 + .../SwiftMath/Package.swift | 23 + .../Sources/SwiftMath/SwiftMath.swift | 26 + .../Tests/SwiftMathTests/SwiftMathTests.swift | 12 + .../Utils/Utils.xcodeproj/project.pbxproj | 324 + .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../Utils/Utils/Utils.swift | 21 + .../transitive-project-test2/buildLog.txt | 423 + 51 files changed, 12595 insertions(+), 1 deletion(-) create mode 100644 TestAssets/transitive-project-and-components/ArchiveLog.txt create mode 100644 TestAssets/transitive-project-and-components/Calculation/Calculation.xcodeproj/project.pbxproj create mode 100755 TestAssets/transitive-project-and-components/Calculation/Calculation/Calculation.docc/Calculation.md create mode 100644 TestAssets/transitive-project-and-components/Calculation/Calculation/Calculation.h create mode 100644 TestAssets/transitive-project-and-components/Calculation/CalculationTests/CalculationTests.swift create mode 100644 TestAssets/transitive-project-and-components/LargerMaster/LargerMaster.xcodeproj/project.pbxproj create mode 100644 TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/AppDelegate.swift create mode 100644 TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/Assets.xcassets/AccentColor.colorset/Contents.json create mode 100644 TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/Assets.xcassets/Contents.json create mode 100644 TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/Base.lproj/LaunchScreen.storyboard create mode 100644 TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/Base.lproj/Main.storyboard create mode 100644 TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/Info.plist create mode 100644 TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/SceneDelegate.swift create mode 100644 TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/ViewController.swift create mode 100644 TestAssets/transitive-project-and-components/LargerMaster/LargerMasterTests/LargerMasterTests.swift create mode 100644 TestAssets/transitive-project-and-components/LargerMaster/LargerMasterUITests/LargerMasterUITests.swift create mode 100644 TestAssets/transitive-project-and-components/LargerMaster/LargerMasterUITests/LargerMasterUITestsLaunchTests.swift create mode 100644 TestAssets/transitive-project-and-components/LargerModule/LargerModule.xcodeproj/project.pbxproj create mode 100755 TestAssets/transitive-project-and-components/LargerModule/LargerModule/LargerModule.docc/LargerModule.md create mode 100644 TestAssets/transitive-project-and-components/LargerModule/LargerModule/LargerModule.h create mode 100644 TestAssets/transitive-project-and-components/LargerModule/LargerModule/LargerModule.swift create mode 100644 TestAssets/transitive-project-and-components/LargerModule/LargerModule/Module.swift create mode 100644 TestAssets/transitive-project-and-components/LargerModule/LargerModuleTests/LargerModuleTests.swift create mode 100644 TestAssets/transitive-project-and-components/TransitivePBXtoSPM.xcworkspace/workspace.json create mode 100644 TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp.xcodeproj/xcshareddata/xcschemes/TransitiveTestApp.xcscheme create mode 100644 TestAssets/transitive-project-test2/StaticSpace/StaticSpace.xcodeproj/project.pbxproj create mode 100644 TestAssets/transitive-project-test2/StaticSpace/StaticSpace/AppDelegate.swift create mode 100644 TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Assets.xcassets/AccentColor.colorset/Contents.json create mode 100644 TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Assets.xcassets/Contents.json create mode 100644 TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Base.lproj/LaunchScreen.storyboard create mode 100644 TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Base.lproj/Main.storyboard create mode 100644 TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Info.plist create mode 100644 TestAssets/transitive-project-test2/StaticSpace/StaticSpace/SceneDelegate.swift create mode 100644 TestAssets/transitive-project-test2/StaticSpace/StaticSpace/ViewController.swift create mode 100644 TestAssets/transitive-project-test2/StaticSpace/StaticSpaceTests/StaticSpaceTests.swift create mode 100644 TestAssets/transitive-project-test2/StaticSpace/StaticSpaceUITests/StaticSpaceUITests.swift create mode 100644 TestAssets/transitive-project-test2/StaticSpace/StaticSpaceUITests/StaticSpaceUITestsLaunchTests.swift create mode 100644 TestAssets/transitive-project-test2/StaticTestSpace.xcworkspace/contents.xcworkspacedata create mode 100644 TestAssets/transitive-project-test2/StaticTestSpace.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 TestAssets/transitive-project-test2/SwiftMath/.gitignore create mode 100644 TestAssets/transitive-project-test2/SwiftMath/Package.swift create mode 100644 TestAssets/transitive-project-test2/SwiftMath/Sources/SwiftMath/SwiftMath.swift create mode 100644 TestAssets/transitive-project-test2/SwiftMath/Tests/SwiftMathTests/SwiftMathTests.swift create mode 100644 TestAssets/transitive-project-test2/Utils/Utils.xcodeproj/project.pbxproj create mode 100644 TestAssets/transitive-project-test2/Utils/Utils.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 TestAssets/transitive-project-test2/Utils/Utils.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 TestAssets/transitive-project-test2/Utils/Utils/Utils.swift create mode 100644 TestAssets/transitive-project-test2/buildLog.txt diff --git a/PBXProjParser/Sources/PBXProjParser/XcodeProject.swift b/PBXProjParser/Sources/PBXProjParser/XcodeProject.swift index c9f3e75..90538d6 100644 --- a/PBXProjParser/Sources/PBXProjParser/XcodeProject.swift +++ b/PBXProjParser/Sources/PBXProjParser/XcodeProject.swift @@ -96,10 +96,12 @@ public struct XcodeProject { /// - Parameter target: the target to get direct dependencies for private func determineDirectDependencies(_ target: PBXNativeTarget) { // Calculate the native target dependencies + logger.debug("Looking for direct dependencies for \(target.name)") target.dependencies .compactMap { model.object(forKey: $0, as: PBXTargetDependency.self) } .compactMap { dependency in if let target = dependency.target { + logger.debug("Direct dependency: \(target)") return target } @@ -124,7 +126,7 @@ public struct XcodeProject { /// Determines transitive dependencies by looping through direct dependencies and finding the items they depend on /// - Parameter target: the target to find transitive dependencies for private func determineTransitiveDependencies(_ target: PBXNativeTarget) { - logger.debug("Target: \(target.name). Deps: \(target.targetDependencies.map { $0.0 })") + logger.debug("Looking for transitive dependencies within Target: \(target.name). Deps: \(target.targetDependencies.map { $0.0 })") var targetDependencies = target.targetDependencies.map { $0.1 } var seen = Set() diff --git a/TestAssets/transitive-project-and-components/ArchiveLog.txt b/TestAssets/transitive-project-and-components/ArchiveLog.txt new file mode 100644 index 0000000..6bfd77b --- /dev/null +++ b/TestAssets/transitive-project-and-components/ArchiveLog.txt @@ -0,0 +1,524 @@ + +Showing All Messages + +Prepare build +note: Building targets in dependency order + + +Building targets in dependency order + +Computing target dependency graph and provisioning inputs + +Create build description +Build description signature: 678e49dfdf108eec124da1419f2fbaeb +Build description path: /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/XCBuildData/678e49dfdf108eec124da1419f2fbaeb.xcbuilddata + +CreateBuildDirectory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components + builtin-create-build-directory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath + +CreateBuildDirectory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components + builtin-create-build-directory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation + +CreateBuildDirectory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components + builtin-create-build-directory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath + +ClangStatCache /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache + +CreateBuildDirectory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components + builtin-create-build-directory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos + +CreateBuildDirectory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/EagerLinkingTBDs/Debug-iphoneos + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components + builtin-create-build-directory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/EagerLinkingTBDs/Debug-iphoneos + +CreateBuildDirectory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/PackageFrameworks + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components + builtin-create-build-directory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/PackageFrameworks + + +Build target SwiftMath with configuration Debug + +SymLink /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/SwiftMath.o ../../IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftMath.o (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftMath + /bin/ln -sfh ../../IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftMath.o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/SwiftMath.o + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/SwiftMath.modulemap (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftMath + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/SwiftMath.modulemap + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/GeneratedModuleMaps-iphoneos/SwiftMath.modulemap /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/SwiftMath.modulemap (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftMath + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/SwiftMath.modulemap /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/GeneratedModuleMaps-iphoneos + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath-OutputFileMap.json (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftMath + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath-OutputFileMap.json + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.LinkFileList (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftMath + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.LinkFileList + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.SwiftFileList (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftMath + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.SwiftFileList + +SwiftDriver SwiftMath normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftMath + builtin-SwiftDriver -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SwiftMath -Onone -enforce-exclusivity\=checked @/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -target arm64-apple-ios11.0 -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -swift-version 5 -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -I /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.swiftmodule -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/swift-overrides.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath-Swift.h -working-directory /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftMath -experimental-emit-module-separately -disable-cmo + +SwiftEmitModule normal arm64 Emitting\ module\ for\ SwiftMath (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftMath + builtin-swiftTaskExecution -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftMath/Sources/SwiftMath/SwiftMath.swift -target arm64-apple-ios11.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -I /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftMath -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/swift-overrides.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftMath -disable-clang-spi -target-sdk-version 16.4 -target-sdk-name iphoneos16.4 -emit-module-doc-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.swiftdoc -emit-module-source-info-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.swiftsourceinfo -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath-Swift.h -serialize-diagnostics-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath-master-emit-module.dia -emit-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath-master-emit-module.d -parse-as-library -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.swiftmodule -emit-abi-descriptor-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.abi.json + +SwiftCompile normal arm64 Compiling\ SwiftMath.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftMath/Sources/SwiftMath/SwiftMath.swift (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftMath + builtin-swiftTaskExecution -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftMath/Sources/SwiftMath/SwiftMath.swift -emit-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.d -emit-reference-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.swiftdeps -serialize-diagnostics-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.dia -target arm64-apple-ios11.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -I /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftMath -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/swift-overrides.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.4 -target-sdk-name iphoneos16.4 -parse-as-library -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.o -index-unit-output-path /SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.o + +SwiftCompile normal arm64 /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftMath/Sources/SwiftMath/SwiftMath.swift (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftMath + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftMath/Sources/SwiftMath/SwiftMath.swift -emit-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.d -emit-reference-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.swiftdeps -serialize-diagnostics-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.dia -target arm64-apple-ios11.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -I /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftMath -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/swift-overrides.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.4 -target-sdk-name iphoneos16.4 -parse-as-library -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.o -index-unit-output-path /SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.o + +SwiftDriverJobDiscovery normal arm64 Emitting module for SwiftMath (in target 'SwiftMath' from project 'SwiftMath') + +SwiftDriver\ Compilation\ Requirements SwiftMath normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftMath + builtin-Swift-Compilation-Requirements -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SwiftMath -Onone -enforce-exclusivity\=checked @/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -target arm64-apple-ios11.0 -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -swift-version 5 -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -I /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.swiftmodule -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/swift-overrides.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath-Swift.h -working-directory /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftMath -experimental-emit-module-separately -disable-cmo + +SwiftMergeGeneratedHeaders /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/GeneratedModuleMaps-iphoneos/SwiftMath-Swift.h /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath-Swift.h (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftMath + builtin-swiftHeaderTool -arch arm64 /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath-Swift.h -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/GeneratedModuleMaps-iphoneos/SwiftMath-Swift.h + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/SwiftMath.swiftmodule/arm64-apple-ios.swiftmodule /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.swiftmodule (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftMath + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.swiftmodule /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/SwiftMath.swiftmodule/arm64-apple-ios.swiftmodule + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/SwiftMath.swiftmodule/arm64-apple-ios.abi.json /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.abi.json (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftMath + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.abi.json /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/SwiftMath.swiftmodule/arm64-apple-ios.abi.json + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/SwiftMath.swiftmodule/arm64-apple-ios.swiftdoc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.swiftdoc (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftMath + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.swiftdoc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/SwiftMath.swiftmodule/arm64-apple-ios.swiftdoc + +SwiftDriverJobDiscovery normal arm64 Compiling SwiftMath.swift (in target 'SwiftMath' from project 'SwiftMath') + +SwiftDriver\ Compilation SwiftMath normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftMath + builtin-Swift-Compilation -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SwiftMath -Onone -enforce-exclusivity\=checked @/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -target arm64-apple-ios11.0 -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -swift-version 5 -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -I /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.swiftmodule -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/swift-overrides.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath-Swift.h -working-directory /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftMath -experimental-emit-module-separately -disable-cmo + +Ld /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftMath.o normal (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftMath + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios11.0 -r -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -L/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/EagerLinkingTBDs/Debug-iphoneos -L/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/EagerLinkingTBDs/Debug-iphoneos -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -F/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk/Developer/Library/Frameworks -filelist /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.swiftmodule -Xlinker -dependency_info -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath_dependency_info.dat -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftMath.o + +SetOwnerAndGroup jaredcarlson:staff /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftMath.o (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftMath + /usr/sbin/chown -RH jaredcarlson:staff /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftMath.o + +SetMode u+w,go-w,a+rX /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftMath.o (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftMath + /bin/chmod -RH u+w,go-w,a+rX /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftMath.o + +RegisterExecutionPolicyException /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftMath.o (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftMath + builtin-RegisterExecutionPolicyException /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftMath.o + + +Build target SwiftCalculation of project SwiftCalculation with configuration Debug + +SymLink /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/SwiftCalculation.framework ../../IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + /bin/ln -sfh ../../IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/SwiftCalculation.framework + +MkDir /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + /bin/mkdir -p /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework + +MkDir /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework/Headers (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + /bin/mkdir -p /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework/Headers + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-diagnostic-filename-map.json (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-diagnostic-filename-map.json + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation.hmap (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-project-headers.hmap (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-project-headers.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/all-product-headers.yaml (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/all-product-headers.yaml + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-own-target-headers.hmap (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-own-target-headers.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-generated-files.hmap (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-generated-files.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-all-target-headers.hmap (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-all-target-headers.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-all-non-framework-target-headers.hmap (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-all-non-framework-target-headers.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/unextended-module.modulemap (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/unextended-module.modulemap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/unextended-module-overlay.yaml (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/unextended-module-overlay.yaml + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/module.modulemap (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/module.modulemap + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework/Modules/module.modulemap /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/module.modulemap (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/module.modulemap /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework/Modules + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/empty-SwiftCalculation.plist (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/empty-SwiftCalculation.plist + +CpHeader /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework/Headers/SwiftCalculation.h /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation/SwiftCalculation/SwiftCalculation.h (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation/SwiftCalculation/SwiftCalculation.h /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework/Headers + +ProcessInfoPlistFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework/Info.plist /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/empty-SwiftCalculation.plist (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + builtin-infoPlistUtility /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/empty-SwiftCalculation.plist -producttype com.apple.product-type.framework -expandbuildsettings -format binary -platform iphoneos -requiredArchitecture arm64 -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework/Info.plist + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/DerivedSources/SwiftCalculation_vers.c (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/DerivedSources/SwiftCalculation_vers.c + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation-OutputFileMap.json (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation-OutputFileMap.json + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation.SwiftFileList (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation.SwiftFileList + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation.LinkFileList (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation.LinkFileList + +SwiftDriver SwiftCalculation normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + builtin-SwiftDriver -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SwiftCalculation -Onone -enforce-exclusivity\=checked @/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation.SwiftFileList -DDEBUG -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -target arm64-apple-ios16.4 -enable-bare-slash-regex -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -swift-version 5 -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -parse-as-library -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation.swiftmodule -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation-Swift.h -import-underlying-module -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/unextended-module-overlay.yaml -working-directory /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation -experimental-emit-module-separately -disable-cmo + +SwiftEmitModule normal arm64 Emitting\ module\ for\ SwiftCalculation (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + builtin-swiftTaskExecution -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation/SwiftCalculation/Calculation.swift -target arm64-apple-ios16.4 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -no-color-diagnostics -enable-testing -g -import-underlying-module -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/DerivedSources -Xcc -DDEBUG\=1 -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/unextended-module-overlay.yaml -module-name SwiftCalculation -disable-clang-spi -target-sdk-version 16.4 -target-sdk-name iphoneos16.4 -emit-module-doc-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation.swiftdoc -emit-module-source-info-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation.swiftsourceinfo -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation-Swift.h -serialize-diagnostics-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation-master-emit-module.dia -emit-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation-master-emit-module.d -parse-as-library -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation.swiftmodule -emit-abi-descriptor-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation.abi.json + +SwiftCompile normal arm64 Compiling\ Calculation.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation/SwiftCalculation/Calculation.swift (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + builtin-swiftTaskExecution -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation/SwiftCalculation/Calculation.swift -emit-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/Calculation.d -emit-reference-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/Calculation.swiftdeps -serialize-diagnostics-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/Calculation.dia -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64 -target arm64-apple-ios16.4 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -no-color-diagnostics -enable-testing -g -import-underlying-module -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/DerivedSources -Xcc -DDEBUG\=1 -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/unextended-module-overlay.yaml -module-name SwiftCalculation -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.4 -target-sdk-name iphoneos16.4 -parse-as-library -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/Calculation.o -index-unit-output-path /SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/Calculation.o + +SwiftCompile normal arm64 /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation/SwiftCalculation/Calculation.swift (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation/SwiftCalculation/Calculation.swift -emit-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/Calculation.d -emit-reference-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/Calculation.swiftdeps -serialize-diagnostics-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/Calculation.dia -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64 -target arm64-apple-ios16.4 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -no-color-diagnostics -enable-testing -g -import-underlying-module -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/DerivedSources -Xcc -DDEBUG\=1 -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/unextended-module-overlay.yaml -module-name SwiftCalculation -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.4 -target-sdk-name iphoneos16.4 -parse-as-library -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/Calculation.o -index-unit-output-path /SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/Calculation.o + +SwiftDriverJobDiscovery normal arm64 Compiling Calculation.swift (in target 'SwiftCalculation' from project 'SwiftCalculation') + +SwiftDriver\ Compilation SwiftCalculation normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + builtin-Swift-Compilation -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SwiftCalculation -Onone -enforce-exclusivity\=checked @/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation.SwiftFileList -DDEBUG -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -target arm64-apple-ios16.4 -enable-bare-slash-regex -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -swift-version 5 -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -parse-as-library -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation.swiftmodule -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation-Swift.h -import-underlying-module -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/unextended-module-overlay.yaml -working-directory /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation -experimental-emit-module-separately -disable-cmo + +SwiftDriverJobDiscovery normal arm64 Emitting module for SwiftCalculation (in target 'SwiftCalculation' from project 'SwiftCalculation') + +SwiftDriver\ Compilation\ Requirements SwiftCalculation normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + builtin-Swift-Compilation-Requirements -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SwiftCalculation -Onone -enforce-exclusivity\=checked @/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation.SwiftFileList -DDEBUG -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -target arm64-apple-ios16.4 -enable-bare-slash-regex -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -swift-version 5 -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -parse-as-library -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation.swiftmodule -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation-Swift.h -import-underlying-module -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/unextended-module-overlay.yaml -working-directory /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation -experimental-emit-module-separately -disable-cmo + +SwiftMergeGeneratedHeaders /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework/Headers/SwiftCalculation-Swift.h /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation-Swift.h (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + builtin-swiftHeaderTool -arch arm64 /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation-Swift.h -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework/Headers/SwiftCalculation-Swift.h + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework/Modules/SwiftCalculation.swiftmodule/arm64-apple-ios.swiftmodule /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation.swiftmodule (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation.swiftmodule /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework/Modules/SwiftCalculation.swiftmodule/arm64-apple-ios.swiftmodule + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework/Modules/SwiftCalculation.swiftmodule/arm64-apple-ios.abi.json /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation.abi.json (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation.abi.json /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework/Modules/SwiftCalculation.swiftmodule/arm64-apple-ios.abi.json + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework/Modules/SwiftCalculation.swiftmodule/arm64-apple-ios.swiftdoc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation.swiftdoc (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation.swiftdoc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework/Modules/SwiftCalculation.swiftmodule/arm64-apple-ios.swiftdoc + +VerifyModule /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/SwiftCalculation.framework (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/modules-verifier /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/SwiftCalculation.framework --clang /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang --diagnostic-filename-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-diagnostic-filename-map.json --sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk --intermediates-directory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/VerifyModule --target arm64-apple-ios16.4 --language objective-c --language objective-c++ --standard gnu11 --standard gnu++20 + +CompileC /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation_vers.o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/DerivedSources/SwiftCalculation_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -target arm64-apple-ios16.4 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu11 -fmodules -gmodules -fmodules-cache-path\=/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/jaredcarlson/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 -fmodule-name\=SwiftCalculation -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Wquoted-include-in-framework-header -Werror\=deprecated-objc-isa-usage -Werror\=objc-root-class -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 -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -DDEBUG\=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -fstrict-aliasing -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -iquote /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-generated-files.hmap -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-own-target-headers.hmap -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-all-non-framework-target-headers.hmap -ivfsoverlay /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/all-product-headers.yaml -iquote /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/SwiftCalculation-project-headers.hmap -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/include -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/DerivedSources-normal/arm64 -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/DerivedSources/arm64 -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/DerivedSources -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/PackageFrameworks -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -fmodule-map-file\=/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/GeneratedModuleMaps-iphoneos/SwiftMath.modulemap -MMD -MT dependencies -MF /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation_vers.d --serialize-diagnostics /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation_vers.dia -c /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/DerivedSources/SwiftCalculation_vers.c -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation_vers.o + +Ld /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework/SwiftCalculation normal (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios16.4 -dynamiclib -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -L/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/EagerLinkingTBDs/Debug-iphoneos -L/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/EagerLinkingTBDs/Debug-iphoneos -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/PackageFrameworks -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -filelist /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation.LinkFileList -install_name @rpath/SwiftCalculation.framework/SwiftCalculation -Xlinker -rpath -Xlinker @executable_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation.swiftmodule -Xlinker -rpath -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/PackageFrameworks -Xlinker -no_adhoc_codesign -compatibility_version 1 -current_version 1 -Xlinker -dependency_info -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation_dependency_info.dat -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework/SwiftCalculation -Xlinker -add_ast_path -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftMath.build/Debug-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.swiftmodule + +ExtractAppIntentsMetadata (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + /Applications/Xcode.app/Contents/Developer/usr/bin/appintentsmetadataprocessor --output /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework --toolchain-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name SwiftCalculation --sdk-root /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk --target-triple arm64-apple-ios16.4 --source-files /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation/SwiftCalculation/Calculation.swift --binary-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework/SwiftCalculation --dependency-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/SwiftCalculation_dependency_info.dat --stringsdata-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/SwiftCalculation.build/Debug-iphoneos/SwiftCalculation.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata + +note: Metadata extraction skipped. No AppIntents.framework dependency found. (in target 'SwiftCalculation' from project 'SwiftCalculation') + +Metadata extraction skipped. No AppIntents.framework dependency found. + +GenerateTAPI /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/EagerLinkingTBDs/Debug-iphoneos/SwiftCalculation.framework/SwiftCalculation.tbd (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/tapi stubify -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/PackageFrameworks -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -L/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework/SwiftCalculation -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/EagerLinkingTBDs/Debug-iphoneos/SwiftCalculation.framework/SwiftCalculation.tbd + +SetOwnerAndGroup jaredcarlson:staff /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + /usr/sbin/chown -RH jaredcarlson:staff /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework + +SetMode u+w,go-w,a+rX /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + /bin/chmod -RH u+w,go-w,a+rX /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework + +CodeSign /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + + Signing Identity: "Apple Development: Jared Carlson (5MZ2F237S9)" + + /usr/bin/codesign --force --sign 3BDF57129BFD07856721AF6498FCADAC04A759AD --generate-entitlement-der /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework + +RegisterExecutionPolicyException /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + builtin-RegisterExecutionPolicyException /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework + +Touch /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework (in target 'SwiftCalculation' from project 'SwiftCalculation') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation + /usr/bin/touch -c /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftCalculation.framework + + +Build target TransitiveTestApp of project TransitiveTestApp with configuration Debug + +SymLink /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/TransitiveTestApp.app ../../InstallationBuildProductsLocation/Applications/TransitiveTestApp.app (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + /bin/ln -sfh ../../InstallationBuildProductsLocation/Applications/TransitiveTestApp.app /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/TransitiveTestApp.app + +MkDir /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + /bin/mkdir -p /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app + +ProcessProductPackaging /Users/jaredcarlson/Library/MobileDevice/Provisioning\ Profiles/3cf0977e-50d7-4bdf-8a0f-a413631c6d46.mobileprovision /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app/embedded.mobileprovision (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + builtin-productPackagingUtility /Users/jaredcarlson/Library/MobileDevice/Provisioning\ Profiles/3cf0977e-50d7-4bdf-8a0f-a413631c6d46.mobileprovision -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app/embedded.mobileprovision + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources/Entitlements.plist (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources/Entitlements.plist + +ProcessProductPackaging "" /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp.app.xcent (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + + Entitlements: + + { + "application-identifier" = "Q7YBK8CJUP.com.gototheboard.TransitiveTestApp"; + "com.apple.developer.team-identifier" = Q7YBK8CJUP; + "get-task-allow" = 1; +} + + builtin-productPackagingUtility -entitlements -format xml -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp.app.xcent + +ProcessProductPackagingDER /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp.app.xcent /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp.app.xcent.der (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + /usr/bin/derq query -f xml -i /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp.app.xcent -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp.app.xcent.der --raw + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp.hmap (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-project-headers.hmap (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-project-headers.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/all-product-headers.yaml (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/all-product-headers.yaml + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-own-target-headers.hmap (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-own-target-headers.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-generated-files.hmap (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-generated-files.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-all-target-headers.hmap (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-all-target-headers.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-all-non-framework-target-headers.hmap (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-all-non-framework-target-headers.hmap + +CompileStoryboard /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Base.lproj/LaunchScreen.storyboard (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + /Applications/Xcode.app/Contents/Developer/usr/bin/ibtool --errors --warnings --notices --module TransitiveTestApp --output-partial-info-plist /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Base.lproj/LaunchScreen-SBPartialInfo.plist --auto-activate-custom-fonts --target-device iphone --target-device ipad --minimum-deployment-target 16.4 --output-format human-readable-text --compilation-directory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Base.lproj /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Base.lproj/LaunchScreen.storyboard + +CompileStoryboard /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Base.lproj/Main.storyboard (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + /Applications/Xcode.app/Contents/Developer/usr/bin/ibtool --errors --warnings --notices --module TransitiveTestApp --output-partial-info-plist /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Base.lproj/Main-SBPartialInfo.plist --auto-activate-custom-fonts --target-device iphone --target-device ipad --minimum-deployment-target 16.4 --output-format human-readable-text --compilation-directory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Base.lproj /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Base.lproj/Main.storyboard + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp-OutputFileMap.json (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp-OutputFileMap.json + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp.LinkFileList (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp.LinkFileList + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp.SwiftFileList (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp.SwiftFileList + +CompileAssetCatalog /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Assets.xcassets (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + /Applications/Xcode.app/Contents/Developer/usr/bin/actool --output-format human-readable-text --notices --warnings --export-dependency-info /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/assetcatalog_dependencies --output-partial-info-plist /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/assetcatalog_generated_info.plist --app-icon AppIcon --accent-color AccentColor --compress-pngs --enable-on-demand-resources YES --development-region en --target-device iphone --target-device ipad --minimum-deployment-target 16.4 --platform iphoneos --compile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Assets.xcassets + +/* com.apple.actool.compilation-results */ +/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/assetcatalog_generated_info.plist + + +SwiftDriver TransitiveTestApp normal arm64 com.apple.xcode.tools.swift.compiler (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + builtin-SwiftDriver -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name TransitiveTestApp -Onone -enforce-exclusivity\=checked @/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp.SwiftFileList -DDEBUG -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -target arm64-apple-ios16.4 -enable-bare-slash-regex -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -swift-version 5 -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp.swiftmodule -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp-Swift.h -working-directory /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp -experimental-emit-module-separately -disable-cmo + +SwiftEmitModule normal arm64 Emitting\ module\ for\ TransitiveTestApp (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + builtin-swiftTaskExecution -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/ViewController.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/AppDelegate.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/SceneDelegate.swift -target arm64-apple-ios16.4 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -no-color-diagnostics -enable-testing -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources -Xcc -DDEBUG\=1 -module-name TransitiveTestApp -disable-clang-spi -target-sdk-version 16.4 -target-sdk-name iphoneos16.4 -emit-module-doc-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp.swiftdoc -emit-module-source-info-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp.swiftsourceinfo -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp-Swift.h -serialize-diagnostics-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp-master-emit-module.dia -emit-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp-master-emit-module.d -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp.swiftmodule -emit-abi-descriptor-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp.abi.json + +SwiftCompile normal arm64 Compiling\ SceneDelegate.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/SceneDelegate.swift (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + builtin-swiftTaskExecution -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/ViewController.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/AppDelegate.swift -primary-file /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/SceneDelegate.swift -emit-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/SceneDelegate.d -emit-reference-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/SceneDelegate.swiftdeps -serialize-diagnostics-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/SceneDelegate.dia -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64 -target arm64-apple-ios16.4 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -no-color-diagnostics -enable-testing -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources -Xcc -DDEBUG\=1 -module-name TransitiveTestApp -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.4 -target-sdk-name iphoneos16.4 -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/SceneDelegate.o -index-unit-output-path /TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/SceneDelegate.o + +SwiftCompile normal arm64 /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/SceneDelegate.swift (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/ViewController.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/AppDelegate.swift -primary-file /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/SceneDelegate.swift -emit-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/SceneDelegate.d -emit-reference-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/SceneDelegate.swiftdeps -serialize-diagnostics-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/SceneDelegate.dia -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64 -target arm64-apple-ios16.4 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -no-color-diagnostics -enable-testing -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources -Xcc -DDEBUG\=1 -module-name TransitiveTestApp -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.4 -target-sdk-name iphoneos16.4 -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/SceneDelegate.o -index-unit-output-path /TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/SceneDelegate.o + +SwiftCompile normal arm64 Compiling\ AppDelegate.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/AppDelegate.swift (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + builtin-swiftTaskExecution -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/ViewController.swift -primary-file /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/AppDelegate.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/SceneDelegate.swift -emit-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/AppDelegate.d -emit-reference-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/AppDelegate.swiftdeps -serialize-diagnostics-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/AppDelegate.dia -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64 -target arm64-apple-ios16.4 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -no-color-diagnostics -enable-testing -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources -Xcc -DDEBUG\=1 -module-name TransitiveTestApp -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.4 -target-sdk-name iphoneos16.4 -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/AppDelegate.o -index-unit-output-path /TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/AppDelegate.o + +SwiftCompile normal arm64 /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/AppDelegate.swift (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/ViewController.swift -primary-file /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/AppDelegate.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/SceneDelegate.swift -emit-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/AppDelegate.d -emit-reference-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/AppDelegate.swiftdeps -serialize-diagnostics-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/AppDelegate.dia -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64 -target arm64-apple-ios16.4 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -no-color-diagnostics -enable-testing -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources -Xcc -DDEBUG\=1 -module-name TransitiveTestApp -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.4 -target-sdk-name iphoneos16.4 -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/AppDelegate.o -index-unit-output-path /TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/AppDelegate.o + +SwiftCompile normal arm64 Compiling\ ViewController.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/ViewController.swift (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + builtin-swiftTaskExecution -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/ViewController.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/AppDelegate.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/SceneDelegate.swift -emit-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/ViewController.d -emit-reference-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/ViewController.swiftdeps -serialize-diagnostics-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/ViewController.dia -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64 -target arm64-apple-ios16.4 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -no-color-diagnostics -enable-testing -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources -Xcc -DDEBUG\=1 -module-name TransitiveTestApp -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.4 -target-sdk-name iphoneos16.4 -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/ViewController.o -index-unit-output-path /TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/ViewController.o + +SwiftCompile normal arm64 /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/ViewController.swift (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/ViewController.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/AppDelegate.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/SceneDelegate.swift -emit-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/ViewController.d -emit-reference-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/ViewController.swiftdeps -serialize-diagnostics-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/ViewController.dia -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64 -target arm64-apple-ios16.4 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -no-color-diagnostics -enable-testing -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources -Xcc -DDEBUG\=1 -module-name TransitiveTestApp -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.4 -target-sdk-name iphoneos16.4 -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/ViewController.o -index-unit-output-path /TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/ViewController.o + +SwiftDriverJobDiscovery normal arm64 Emitting module for TransitiveTestApp (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + +SwiftDriver\ Compilation\ Requirements TransitiveTestApp normal arm64 com.apple.xcode.tools.swift.compiler (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + builtin-Swift-Compilation-Requirements -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name TransitiveTestApp -Onone -enforce-exclusivity\=checked @/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp.SwiftFileList -DDEBUG -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -target arm64-apple-ios16.4 -enable-bare-slash-regex -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -swift-version 5 -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp.swiftmodule -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp-Swift.h -working-directory /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp -experimental-emit-module-separately -disable-cmo + +SwiftMergeGeneratedHeaders /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources/TransitiveTestApp-Swift.h /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp-Swift.h (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + builtin-swiftHeaderTool -arch arm64 /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp-Swift.h -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources/TransitiveTestApp-Swift.h + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/TransitiveTestApp.swiftmodule/arm64-apple-ios.swiftmodule /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp.swiftmodule (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp.swiftmodule /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/TransitiveTestApp.swiftmodule/arm64-apple-ios.swiftmodule + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/TransitiveTestApp.swiftmodule/arm64-apple-ios.abi.json /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp.abi.json (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp.abi.json /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/TransitiveTestApp.swiftmodule/arm64-apple-ios.abi.json + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/TransitiveTestApp.swiftmodule/arm64-apple-ios.swiftdoc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp.swiftdoc (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp.swiftdoc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/TransitiveTestApp.swiftmodule/arm64-apple-ios.swiftdoc + +SwiftDriverJobDiscovery normal arm64 Compiling AppDelegate.swift (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + +SwiftDriverJobDiscovery normal arm64 Compiling SceneDelegate.swift (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + +SwiftDriverJobDiscovery normal arm64 Compiling ViewController.swift (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + +SwiftDriver\ Compilation TransitiveTestApp normal arm64 com.apple.xcode.tools.swift.compiler (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + builtin-Swift-Compilation -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name TransitiveTestApp -Onone -enforce-exclusivity\=checked @/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp.SwiftFileList -DDEBUG -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -target arm64-apple-ios16.4 -enable-bare-slash-regex -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -swift-version 5 -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp.swiftmodule -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp-Swift.h -working-directory /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp -experimental-emit-module-separately -disable-cmo + +Ld /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app/TransitiveTestApp normal (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios16.4 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -L/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/EagerLinkingTBDs/Debug-iphoneos -L/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/EagerLinkingTBDs/Debug-iphoneos -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/PackageFrameworks -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos -filelist /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -final_output -Xlinker /Applications/TransitiveTestApp.app/TransitiveTestApp -fobjc-link-runtime -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp.swiftmodule -Xlinker -rpath -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/PackageFrameworks /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/SwiftCalculation.framework/SwiftCalculation -Xlinker -no_adhoc_codesign -Xlinker -dependency_info -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp_dependency_info.dat -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app/TransitiveTestApp + +ProcessInfoPlistFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app/Info.plist /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Info.plist (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + builtin-infoPlistUtility /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/Info.plist -producttype com.apple.product-type.application -genpkginfo /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app/PkgInfo -expandbuildsettings -format binary -platform iphoneos -additionalcontentfile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Base.lproj/LaunchScreen-SBPartialInfo.plist -additionalcontentfile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Base.lproj/Main-SBPartialInfo.plist -additionalcontentfile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/assetcatalog_generated_info.plist -requiredArchitecture arm64 -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app/Info.plist + +LinkStoryboards (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + /Applications/Xcode.app/Contents/Developer/usr/bin/ibtool --errors --warnings --notices --module TransitiveTestApp --target-device iphone --target-device ipad --minimum-deployment-target 16.4 --output-format human-readable-text --link /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Base.lproj/LaunchScreen.storyboardc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Base.lproj/Main.storyboardc + +ExtractAppIntentsMetadata (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + /Applications/Xcode.app/Contents/Developer/usr/bin/appintentsmetadataprocessor --output /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app --toolchain-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name TransitiveTestApp --sdk-root /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk --target-triple arm64-apple-ios16.4 --source-files /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/ViewController.swift --source-files /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/AppDelegate.swift --source-files /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/SceneDelegate.swift --binary-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app/TransitiveTestApp --dependency-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/TransitiveTestApp_dependency_info.dat --stringsdata-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata + +note: Metadata extraction skipped. No AppIntents.framework dependency found. (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + +Metadata extraction skipped. No AppIntents.framework dependency found. + +CopySwiftLibs /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + builtin-swiftStdLibTool --copy --verbose --sign 3BDF57129BFD07856721AF6498FCADAC04A759AD --scan-executable /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app/TransitiveTestApp --scan-folder /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app/Frameworks --scan-folder /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app/PlugIns --scan-folder /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app/SystemExtensions --scan-folder /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app/Extensions --scan-folder /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/Debug-iphoneos/SwiftCalculation.framework --platform iphoneos --toolchain /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app/Frameworks --unsigned-destination /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/BuildProductsPath/SwiftSupport --strip-bitcode --strip-bitcode-tool /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip --emit-dependency-info /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/SwiftStdLibToolInputDependencies.dep --filter-for-swift-os + +SetOwnerAndGroup jaredcarlson:staff /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + /usr/sbin/chown -RH jaredcarlson:staff /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app + +SetMode u+w,go-w,a+rX /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + /bin/chmod -RH u+w,go-w,a+rX /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app + +CodeSign /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + + Signing Identity: "Apple Development: Jared Carlson (5MZ2F237S9)" + Provisioning Profile: "iOS Team Provisioning Profile: *" + (3cf0977e-50d7-4bdf-8a0f-a413631c6d46) + + /usr/bin/codesign --force --sign 3BDF57129BFD07856721AF6498FCADAC04A759AD --entitlements /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/IntermediateBuildFilesPath/TransitiveTestApp.build/Debug-iphoneos/TransitiveTestApp.build/TransitiveTestApp.app.xcent --generate-entitlement-der /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app + +RegisterExecutionPolicyException /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + builtin-RegisterExecutionPolicyException /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app + +Validate /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + builtin-validationUtility /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app + +Touch /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app (in target 'TransitiveTestApp' from project 'TransitiveTestApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp + /usr/bin/touch -c /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/TransitivePBXtoSPM-dufpobynfgesgwhfxvhiihmaxduq/Build/Intermediates.noindex/ArchiveIntermediates/TransitiveTestApp/InstallationBuildProductsLocation/Applications/TransitiveTestApp.app + + + +Build succeeded 7/30/23, 9:14 PM 6.9 seconds diff --git a/TestAssets/transitive-project-and-components/Calculation/Calculation.xcodeproj/project.pbxproj b/TestAssets/transitive-project-and-components/Calculation/Calculation.xcodeproj/project.pbxproj new file mode 100644 index 0000000..9fa4e87 --- /dev/null +++ b/TestAssets/transitive-project-and-components/Calculation/Calculation.xcodeproj/project.pbxproj @@ -0,0 +1,467 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 56; + objects = { + +/* Begin PBXBuildFile section */ + 04BFCC3A2A7B2C5400A47844 /* Calculation.docc in Sources */ = {isa = PBXBuildFile; fileRef = 04BFCC392A7B2C5400A47844 /* Calculation.docc */; }; + 04BFCC402A7B2C5400A47844 /* Calculation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 04BFCC352A7B2C5400A47844 /* Calculation.framework */; }; + 04BFCC452A7B2C5400A47844 /* CalculationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04BFCC442A7B2C5400A47844 /* CalculationTests.swift */; }; + 04BFCC462A7B2C5400A47844 /* Calculation.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BFCC382A7B2C5400A47844 /* Calculation.h */; settings = {ATTRIBUTES = (Public, ); }; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 04BFCC412A7B2C5400A47844 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 04BFCC2C2A7B2C5400A47844 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 04BFCC342A7B2C5400A47844; + remoteInfo = Calculation; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 04BFCC352A7B2C5400A47844 /* Calculation.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Calculation.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 04BFCC382A7B2C5400A47844 /* Calculation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Calculation.h; sourceTree = ""; }; + 04BFCC392A7B2C5400A47844 /* Calculation.docc */ = {isa = PBXFileReference; lastKnownFileType = folder.documentationcatalog; path = Calculation.docc; sourceTree = ""; }; + 04BFCC3F2A7B2C5400A47844 /* CalculationTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CalculationTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 04BFCC442A7B2C5400A47844 /* CalculationTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalculationTests.swift; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 04BFCC322A7B2C5400A47844 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04BFCC3C2A7B2C5400A47844 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 04BFCC402A7B2C5400A47844 /* Calculation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 04BFCC2B2A7B2C5400A47844 = { + isa = PBXGroup; + children = ( + 04BFCC372A7B2C5400A47844 /* Calculation */, + 04BFCC432A7B2C5400A47844 /* CalculationTests */, + 04BFCC362A7B2C5400A47844 /* Products */, + ); + sourceTree = ""; + }; + 04BFCC362A7B2C5400A47844 /* Products */ = { + isa = PBXGroup; + children = ( + 04BFCC352A7B2C5400A47844 /* Calculation.framework */, + 04BFCC3F2A7B2C5400A47844 /* CalculationTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 04BFCC372A7B2C5400A47844 /* Calculation */ = { + isa = PBXGroup; + children = ( + 04BFCC382A7B2C5400A47844 /* Calculation.h */, + 04BFCC392A7B2C5400A47844 /* Calculation.docc */, + ); + path = Calculation; + sourceTree = ""; + }; + 04BFCC432A7B2C5400A47844 /* CalculationTests */ = { + isa = PBXGroup; + children = ( + 04BFCC442A7B2C5400A47844 /* CalculationTests.swift */, + ); + path = CalculationTests; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + 04BFCC302A7B2C5400A47844 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 04BFCC462A7B2C5400A47844 /* Calculation.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + 04BFCC342A7B2C5400A47844 /* Calculation */ = { + isa = PBXNativeTarget; + buildConfigurationList = 04BFCC492A7B2C5400A47844 /* Build configuration list for PBXNativeTarget "Calculation" */; + buildPhases = ( + 04BFCC302A7B2C5400A47844 /* Headers */, + 04BFCC312A7B2C5400A47844 /* Sources */, + 04BFCC322A7B2C5400A47844 /* Frameworks */, + 04BFCC332A7B2C5400A47844 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = Calculation; + productName = Calculation; + productReference = 04BFCC352A7B2C5400A47844 /* Calculation.framework */; + productType = "com.apple.product-type.framework"; + }; + 04BFCC3E2A7B2C5400A47844 /* CalculationTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 04BFCC4C2A7B2C5400A47844 /* Build configuration list for PBXNativeTarget "CalculationTests" */; + buildPhases = ( + 04BFCC3B2A7B2C5400A47844 /* Sources */, + 04BFCC3C2A7B2C5400A47844 /* Frameworks */, + 04BFCC3D2A7B2C5400A47844 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 04BFCC422A7B2C5400A47844 /* PBXTargetDependency */, + ); + name = CalculationTests; + productName = CalculationTests; + productReference = 04BFCC3F2A7B2C5400A47844 /* CalculationTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 04BFCC2C2A7B2C5400A47844 /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = 1; + LastSwiftUpdateCheck = 1430; + LastUpgradeCheck = 1430; + TargetAttributes = { + 04BFCC342A7B2C5400A47844 = { + CreatedOnToolsVersion = 14.3.1; + }; + 04BFCC3E2A7B2C5400A47844 = { + CreatedOnToolsVersion = 14.3.1; + }; + }; + }; + buildConfigurationList = 04BFCC2F2A7B2C5400A47844 /* Build configuration list for PBXProject "Calculation" */; + compatibilityVersion = "Xcode 14.0"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 04BFCC2B2A7B2C5400A47844; + productRefGroup = 04BFCC362A7B2C5400A47844 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 04BFCC342A7B2C5400A47844 /* Calculation */, + 04BFCC3E2A7B2C5400A47844 /* CalculationTests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 04BFCC332A7B2C5400A47844 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04BFCC3D2A7B2C5400A47844 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 04BFCC312A7B2C5400A47844 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 04BFCC3A2A7B2C5400A47844 /* Calculation.docc in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04BFCC3B2A7B2C5400A47844 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 04BFCC452A7B2C5400A47844 /* CalculationTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 04BFCC422A7B2C5400A47844 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 04BFCC342A7B2C5400A47844 /* Calculation */; + targetProxy = 04BFCC412A7B2C5400A47844 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + 04BFCC472A7B2C5400A47844 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 04BFCC482A7B2C5400A47844 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 04BFCC4A2A7B2C5400A47844 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_KEY_NSHumanReadableCopyright = ""; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; + MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++20"; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.Calculation; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 04BFCC4B2A7B2C5400A47844 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_KEY_NSHumanReadableCopyright = ""; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; + MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++20"; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.Calculation; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; + 04BFCC4D2A7B2C5400A47844 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.CalculationTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 04BFCC4E2A7B2C5400A47844 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.CalculationTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 04BFCC2F2A7B2C5400A47844 /* Build configuration list for PBXProject "Calculation" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04BFCC472A7B2C5400A47844 /* Debug */, + 04BFCC482A7B2C5400A47844 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 04BFCC492A7B2C5400A47844 /* Build configuration list for PBXNativeTarget "Calculation" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04BFCC4A2A7B2C5400A47844 /* Debug */, + 04BFCC4B2A7B2C5400A47844 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 04BFCC4C2A7B2C5400A47844 /* Build configuration list for PBXNativeTarget "CalculationTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04BFCC4D2A7B2C5400A47844 /* Debug */, + 04BFCC4E2A7B2C5400A47844 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 04BFCC2C2A7B2C5400A47844 /* Project object */; +} diff --git a/TestAssets/transitive-project-and-components/Calculation/Calculation/Calculation.docc/Calculation.md b/TestAssets/transitive-project-and-components/Calculation/Calculation/Calculation.docc/Calculation.md new file mode 100755 index 0000000..e1d1ff8 --- /dev/null +++ b/TestAssets/transitive-project-and-components/Calculation/Calculation/Calculation.docc/Calculation.md @@ -0,0 +1,13 @@ +# ``Calculation`` + +Summary + +## Overview + +Text + +## Topics + +### Group + +- ``Symbol`` \ No newline at end of file diff --git a/TestAssets/transitive-project-and-components/Calculation/Calculation/Calculation.h b/TestAssets/transitive-project-and-components/Calculation/Calculation/Calculation.h new file mode 100644 index 0000000..b96ae99 --- /dev/null +++ b/TestAssets/transitive-project-and-components/Calculation/Calculation/Calculation.h @@ -0,0 +1,18 @@ +// +// Calculation.h +// Calculation +// +// Created by Jared Carlson on 8/2/23. +// + +#import + +//! Project version number for Calculation. +FOUNDATION_EXPORT double CalculationVersionNumber; + +//! Project version string for Calculation. +FOUNDATION_EXPORT const unsigned char CalculationVersionString[]; + +// In this header, you should import all the public headers of your framework using statements like #import + + diff --git a/TestAssets/transitive-project-and-components/Calculation/CalculationTests/CalculationTests.swift b/TestAssets/transitive-project-and-components/Calculation/CalculationTests/CalculationTests.swift new file mode 100644 index 0000000..7dc5e10 --- /dev/null +++ b/TestAssets/transitive-project-and-components/Calculation/CalculationTests/CalculationTests.swift @@ -0,0 +1,36 @@ +// +// CalculationTests.swift +// CalculationTests +// +// Created by Jared Carlson on 8/2/23. +// + +import XCTest +@testable import Calculation + +final class CalculationTests: XCTestCase { + + override func setUpWithError() throws { + // Put setup code here. This method is called before the invocation of each test method in the class. + } + + override func tearDownWithError() throws { + // Put teardown code here. This method is called after the invocation of each test method in the class. + } + + func testExample() throws { + // This is an example of a functional test case. + // Use XCTAssert and related functions to verify your tests produce the correct results. + // Any test you write for XCTest can be annotated as throws and async. + // Mark your test throws to produce an unexpected failure when your test encounters an uncaught error. + // Mark your test async to allow awaiting for asynchronous code to complete. Check the results with assertions afterwards. + } + + func testPerformanceExample() throws { + // This is an example of a performance test case. + self.measure { + // Put the code you want to measure the time of here. + } + } + +} diff --git a/TestAssets/transitive-project-and-components/LargerMaster/LargerMaster.xcodeproj/project.pbxproj b/TestAssets/transitive-project-and-components/LargerMaster/LargerMaster.xcodeproj/project.pbxproj new file mode 100644 index 0000000..3d30d0d --- /dev/null +++ b/TestAssets/transitive-project-and-components/LargerMaster/LargerMaster.xcodeproj/project.pbxproj @@ -0,0 +1,668 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 56; + objects = { + +/* Begin PBXBuildFile section */ + 04BFCBCB2A7B29F600A47844 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04BFCBCA2A7B29F600A47844 /* AppDelegate.swift */; }; + 04BFCBCD2A7B29F600A47844 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04BFCBCC2A7B29F600A47844 /* SceneDelegate.swift */; }; + 04BFCBCF2A7B29F600A47844 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04BFCBCE2A7B29F600A47844 /* ViewController.swift */; }; + 04BFCBD22A7B29F600A47844 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 04BFCBD02A7B29F600A47844 /* Main.storyboard */; }; + 04BFCBD42A7B29F700A47844 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 04BFCBD32A7B29F700A47844 /* Assets.xcassets */; }; + 04BFCBD72A7B29F700A47844 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 04BFCBD52A7B29F700A47844 /* LaunchScreen.storyboard */; }; + 04BFCBE22A7B29F700A47844 /* LargerMasterTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04BFCBE12A7B29F700A47844 /* LargerMasterTests.swift */; }; + 04BFCBEC2A7B29F700A47844 /* LargerMasterUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04BFCBEB2A7B29F700A47844 /* LargerMasterUITests.swift */; }; + 04BFCBEE2A7B29F700A47844 /* LargerMasterUITestsLaunchTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04BFCBED2A7B29F700A47844 /* LargerMasterUITestsLaunchTests.swift */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 04BFCBDE2A7B29F700A47844 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 04BFCBBF2A7B29F600A47844 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 04BFCBC62A7B29F600A47844; + remoteInfo = LargerMaster; + }; + 04BFCBE82A7B29F700A47844 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 04BFCBBF2A7B29F600A47844 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 04BFCBC62A7B29F600A47844; + remoteInfo = LargerMaster; + }; + 04BFCC232A7B2A2500A47844 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 04BFCC1E2A7B2A2400A47844 /* LargerModule.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 04BFCC042A7B2A2400A47844; + remoteInfo = LargerModule; + }; + 04BFCC252A7B2A2500A47844 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 04BFCC1E2A7B2A2400A47844 /* LargerModule.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 04BFCC0E2A7B2A2400A47844; + remoteInfo = LargerModuleTests; + }; + 04BFCC8B2A7B2F9600A47844 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 04BFCC1E2A7B2A2400A47844 /* LargerModule.xcodeproj */; + proxyType = 1; + remoteGlobalIDString = 04BFCC032A7B2A2400A47844; + remoteInfo = LargerModule; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 04BFCBC72A7B29F600A47844 /* LargerMaster.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = LargerMaster.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 04BFCBCA2A7B29F600A47844 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 04BFCBCC2A7B29F600A47844 /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = ""; }; + 04BFCBCE2A7B29F600A47844 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; + 04BFCBD12A7B29F600A47844 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + 04BFCBD32A7B29F700A47844 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + 04BFCBD62A7B29F700A47844 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + 04BFCBD82A7B29F700A47844 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 04BFCBDD2A7B29F700A47844 /* LargerMasterTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = LargerMasterTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 04BFCBE12A7B29F700A47844 /* LargerMasterTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LargerMasterTests.swift; sourceTree = ""; }; + 04BFCBE72A7B29F700A47844 /* LargerMasterUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = LargerMasterUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 04BFCBEB2A7B29F700A47844 /* LargerMasterUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LargerMasterUITests.swift; sourceTree = ""; }; + 04BFCBED2A7B29F700A47844 /* LargerMasterUITestsLaunchTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LargerMasterUITestsLaunchTests.swift; sourceTree = ""; }; + 04BFCC1E2A7B2A2400A47844 /* LargerModule.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = LargerModule.xcodeproj; path = ../LargerModule/LargerModule.xcodeproj; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 04BFCBC42A7B29F600A47844 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04BFCBDA2A7B29F700A47844 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04BFCBE42A7B29F700A47844 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 04BFCBBE2A7B29F600A47844 = { + isa = PBXGroup; + children = ( + 04BFCC1E2A7B2A2400A47844 /* LargerModule.xcodeproj */, + 04BFCBC92A7B29F600A47844 /* LargerMaster */, + 04BFCBE02A7B29F700A47844 /* LargerMasterTests */, + 04BFCBEA2A7B29F700A47844 /* LargerMasterUITests */, + 04BFCBC82A7B29F600A47844 /* Products */, + ); + sourceTree = ""; + }; + 04BFCBC82A7B29F600A47844 /* Products */ = { + isa = PBXGroup; + children = ( + 04BFCBC72A7B29F600A47844 /* LargerMaster.app */, + 04BFCBDD2A7B29F700A47844 /* LargerMasterTests.xctest */, + 04BFCBE72A7B29F700A47844 /* LargerMasterUITests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 04BFCBC92A7B29F600A47844 /* LargerMaster */ = { + isa = PBXGroup; + children = ( + 04BFCBCA2A7B29F600A47844 /* AppDelegate.swift */, + 04BFCBCC2A7B29F600A47844 /* SceneDelegate.swift */, + 04BFCBCE2A7B29F600A47844 /* ViewController.swift */, + 04BFCBD02A7B29F600A47844 /* Main.storyboard */, + 04BFCBD32A7B29F700A47844 /* Assets.xcassets */, + 04BFCBD52A7B29F700A47844 /* LaunchScreen.storyboard */, + 04BFCBD82A7B29F700A47844 /* Info.plist */, + ); + path = LargerMaster; + sourceTree = ""; + }; + 04BFCBE02A7B29F700A47844 /* LargerMasterTests */ = { + isa = PBXGroup; + children = ( + 04BFCBE12A7B29F700A47844 /* LargerMasterTests.swift */, + ); + path = LargerMasterTests; + sourceTree = ""; + }; + 04BFCBEA2A7B29F700A47844 /* LargerMasterUITests */ = { + isa = PBXGroup; + children = ( + 04BFCBEB2A7B29F700A47844 /* LargerMasterUITests.swift */, + 04BFCBED2A7B29F700A47844 /* LargerMasterUITestsLaunchTests.swift */, + ); + path = LargerMasterUITests; + sourceTree = ""; + }; + 04BFCC1F2A7B2A2400A47844 /* Products */ = { + isa = PBXGroup; + children = ( + 04BFCC242A7B2A2500A47844 /* LargerModule.framework */, + 04BFCC262A7B2A2500A47844 /* LargerModuleTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 04BFCBC62A7B29F600A47844 /* LargerMaster */ = { + isa = PBXNativeTarget; + buildConfigurationList = 04BFCBF12A7B29F700A47844 /* Build configuration list for PBXNativeTarget "LargerMaster" */; + buildPhases = ( + 04BFCBC32A7B29F600A47844 /* Sources */, + 04BFCBC42A7B29F600A47844 /* Frameworks */, + 04BFCBC52A7B29F600A47844 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 04BFCC8C2A7B2F9600A47844 /* PBXTargetDependency */, + ); + name = LargerMaster; + productName = LargerMaster; + productReference = 04BFCBC72A7B29F600A47844 /* LargerMaster.app */; + productType = "com.apple.product-type.application"; + }; + 04BFCBDC2A7B29F700A47844 /* LargerMasterTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 04BFCBF42A7B29F700A47844 /* Build configuration list for PBXNativeTarget "LargerMasterTests" */; + buildPhases = ( + 04BFCBD92A7B29F700A47844 /* Sources */, + 04BFCBDA2A7B29F700A47844 /* Frameworks */, + 04BFCBDB2A7B29F700A47844 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 04BFCBDF2A7B29F700A47844 /* PBXTargetDependency */, + ); + name = LargerMasterTests; + productName = LargerMasterTests; + productReference = 04BFCBDD2A7B29F700A47844 /* LargerMasterTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + 04BFCBE62A7B29F700A47844 /* LargerMasterUITests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 04BFCBF72A7B29F700A47844 /* Build configuration list for PBXNativeTarget "LargerMasterUITests" */; + buildPhases = ( + 04BFCBE32A7B29F700A47844 /* Sources */, + 04BFCBE42A7B29F700A47844 /* Frameworks */, + 04BFCBE52A7B29F700A47844 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 04BFCBE92A7B29F700A47844 /* PBXTargetDependency */, + ); + name = LargerMasterUITests; + productName = LargerMasterUITests; + productReference = 04BFCBE72A7B29F700A47844 /* LargerMasterUITests.xctest */; + productType = "com.apple.product-type.bundle.ui-testing"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 04BFCBBF2A7B29F600A47844 /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = 1; + LastSwiftUpdateCheck = 1430; + LastUpgradeCheck = 1430; + TargetAttributes = { + 04BFCBC62A7B29F600A47844 = { + CreatedOnToolsVersion = 14.3.1; + }; + 04BFCBDC2A7B29F700A47844 = { + CreatedOnToolsVersion = 14.3.1; + TestTargetID = 04BFCBC62A7B29F600A47844; + }; + 04BFCBE62A7B29F700A47844 = { + CreatedOnToolsVersion = 14.3.1; + TestTargetID = 04BFCBC62A7B29F600A47844; + }; + }; + }; + buildConfigurationList = 04BFCBC22A7B29F600A47844 /* Build configuration list for PBXProject "LargerMaster" */; + compatibilityVersion = "Xcode 14.0"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 04BFCBBE2A7B29F600A47844; + productRefGroup = 04BFCBC82A7B29F600A47844 /* Products */; + projectDirPath = ""; + projectReferences = ( + { + ProductGroup = 04BFCC1F2A7B2A2400A47844 /* Products */; + ProjectRef = 04BFCC1E2A7B2A2400A47844 /* LargerModule.xcodeproj */; + }, + ); + projectRoot = ""; + targets = ( + 04BFCBC62A7B29F600A47844 /* LargerMaster */, + 04BFCBDC2A7B29F700A47844 /* LargerMasterTests */, + 04BFCBE62A7B29F700A47844 /* LargerMasterUITests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXReferenceProxy section */ + 04BFCC242A7B2A2500A47844 /* LargerModule.framework */ = { + isa = PBXReferenceProxy; + fileType = wrapper.framework; + path = LargerModule.framework; + remoteRef = 04BFCC232A7B2A2500A47844 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 04BFCC262A7B2A2500A47844 /* LargerModuleTests.xctest */ = { + isa = PBXReferenceProxy; + fileType = wrapper.cfbundle; + path = LargerModuleTests.xctest; + remoteRef = 04BFCC252A7B2A2500A47844 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; +/* End PBXReferenceProxy section */ + +/* Begin PBXResourcesBuildPhase section */ + 04BFCBC52A7B29F600A47844 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 04BFCBD72A7B29F700A47844 /* LaunchScreen.storyboard in Resources */, + 04BFCBD42A7B29F700A47844 /* Assets.xcassets in Resources */, + 04BFCBD22A7B29F600A47844 /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04BFCBDB2A7B29F700A47844 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04BFCBE52A7B29F700A47844 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 04BFCBC32A7B29F600A47844 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 04BFCBCF2A7B29F600A47844 /* ViewController.swift in Sources */, + 04BFCBCB2A7B29F600A47844 /* AppDelegate.swift in Sources */, + 04BFCBCD2A7B29F600A47844 /* SceneDelegate.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04BFCBD92A7B29F700A47844 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 04BFCBE22A7B29F700A47844 /* LargerMasterTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04BFCBE32A7B29F700A47844 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 04BFCBEC2A7B29F700A47844 /* LargerMasterUITests.swift in Sources */, + 04BFCBEE2A7B29F700A47844 /* LargerMasterUITestsLaunchTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 04BFCBDF2A7B29F700A47844 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 04BFCBC62A7B29F600A47844 /* LargerMaster */; + targetProxy = 04BFCBDE2A7B29F700A47844 /* PBXContainerItemProxy */; + }; + 04BFCBE92A7B29F700A47844 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 04BFCBC62A7B29F600A47844 /* LargerMaster */; + targetProxy = 04BFCBE82A7B29F700A47844 /* PBXContainerItemProxy */; + }; + 04BFCC8C2A7B2F9600A47844 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = LargerModule; + targetProxy = 04BFCC8B2A7B2F9600A47844 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 04BFCBD02A7B29F600A47844 /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 04BFCBD12A7B29F600A47844 /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; + 04BFCBD52A7B29F700A47844 /* LaunchScreen.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 04BFCBD62A7B29F700A47844 /* Base */, + ); + name = LaunchScreen.storyboard; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 04BFCBEF2A7B29F700A47844 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + 04BFCBF02A7B29F700A47844 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 04BFCBF22A7B29F700A47844 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = LargerMaster/Info.plist; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen; + INFOPLIST_KEY_UIMainStoryboardFile = Main; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.LargerMaster; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 04BFCBF32A7B29F700A47844 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = LargerMaster/Info.plist; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen; + INFOPLIST_KEY_UIMainStoryboardFile = Main; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.LargerMaster; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; + 04BFCBF52A7B29F700A47844 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.LargerMasterTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/LargerMaster.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/LargerMaster"; + }; + name = Debug; + }; + 04BFCBF62A7B29F700A47844 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.LargerMasterTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/LargerMaster.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/LargerMaster"; + }; + name = Release; + }; + 04BFCBF82A7B29F700A47844 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.LargerMasterUITests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_TARGET_NAME = LargerMaster; + }; + name = Debug; + }; + 04BFCBF92A7B29F700A47844 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.LargerMasterUITests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_TARGET_NAME = LargerMaster; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 04BFCBC22A7B29F600A47844 /* Build configuration list for PBXProject "LargerMaster" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04BFCBEF2A7B29F700A47844 /* Debug */, + 04BFCBF02A7B29F700A47844 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 04BFCBF12A7B29F700A47844 /* Build configuration list for PBXNativeTarget "LargerMaster" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04BFCBF22A7B29F700A47844 /* Debug */, + 04BFCBF32A7B29F700A47844 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 04BFCBF42A7B29F700A47844 /* Build configuration list for PBXNativeTarget "LargerMasterTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04BFCBF52A7B29F700A47844 /* Debug */, + 04BFCBF62A7B29F700A47844 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 04BFCBF72A7B29F700A47844 /* Build configuration list for PBXNativeTarget "LargerMasterUITests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04BFCBF82A7B29F700A47844 /* Debug */, + 04BFCBF92A7B29F700A47844 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 04BFCBBF2A7B29F600A47844 /* Project object */; +} diff --git a/TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/AppDelegate.swift b/TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/AppDelegate.swift new file mode 100644 index 0000000..b2bb205 --- /dev/null +++ b/TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/AppDelegate.swift @@ -0,0 +1,36 @@ +// +// AppDelegate.swift +// LargerMaster +// +// Created by Jared Carlson on 8/2/23. +// + +import UIKit + +@main +class AppDelegate: UIResponder, UIApplicationDelegate { + + + + func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { + // Override point for customization after application launch. + return true + } + + // MARK: UISceneSession Lifecycle + + func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration { + // Called when a new scene session is being created. + // Use this method to select a configuration to create the new scene with. + return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role) + } + + func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set) { + // Called when the user discards a scene session. + // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions. + // Use this method to release any resources that were specific to the discarded scenes, as they will not return. + } + + +} + diff --git a/TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/Assets.xcassets/AccentColor.colorset/Contents.json b/TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/Assets.xcassets/AccentColor.colorset/Contents.json new file mode 100644 index 0000000..eb87897 --- /dev/null +++ b/TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/Assets.xcassets/AccentColor.colorset/Contents.json @@ -0,0 +1,11 @@ +{ + "colors" : [ + { + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/Assets.xcassets/AppIcon.appiconset/Contents.json b/TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..13613e3 --- /dev/null +++ b/TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,13 @@ +{ + "images" : [ + { + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/Assets.xcassets/Contents.json b/TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/Assets.xcassets/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/Base.lproj/LaunchScreen.storyboard b/TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 0000000..865e932 --- /dev/null +++ b/TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/Base.lproj/Main.storyboard b/TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/Base.lproj/Main.storyboard new file mode 100644 index 0000000..25a7638 --- /dev/null +++ b/TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/Base.lproj/Main.storyboard @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/Info.plist b/TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/Info.plist new file mode 100644 index 0000000..dd3c9af --- /dev/null +++ b/TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/Info.plist @@ -0,0 +1,25 @@ + + + + + UIApplicationSceneManifest + + UIApplicationSupportsMultipleScenes + + UISceneConfigurations + + UIWindowSceneSessionRoleApplication + + + UISceneConfigurationName + Default Configuration + UISceneDelegateClassName + $(PRODUCT_MODULE_NAME).SceneDelegate + UISceneStoryboardFile + Main + + + + + + diff --git a/TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/SceneDelegate.swift b/TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/SceneDelegate.swift new file mode 100644 index 0000000..be4f5ac --- /dev/null +++ b/TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/SceneDelegate.swift @@ -0,0 +1,52 @@ +// +// SceneDelegate.swift +// LargerMaster +// +// Created by Jared Carlson on 8/2/23. +// + +import UIKit + +class SceneDelegate: UIResponder, UIWindowSceneDelegate { + + var window: UIWindow? + + + func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) { + // Use this method to optionally configure and attach the UIWindow `window` to the provided UIWindowScene `scene`. + // If using a storyboard, the `window` property will automatically be initialized and attached to the scene. + // This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead). + guard let _ = (scene as? UIWindowScene) else { return } + } + + func sceneDidDisconnect(_ scene: UIScene) { + // Called as the scene is being released by the system. + // This occurs shortly after the scene enters the background, or when its session is discarded. + // Release any resources associated with this scene that can be re-created the next time the scene connects. + // The scene may re-connect later, as its session was not necessarily discarded (see `application:didDiscardSceneSessions` instead). + } + + func sceneDidBecomeActive(_ scene: UIScene) { + // Called when the scene has moved from an inactive state to an active state. + // Use this method to restart any tasks that were paused (or not yet started) when the scene was inactive. + } + + func sceneWillResignActive(_ scene: UIScene) { + // Called when the scene will move from an active state to an inactive state. + // This may occur due to temporary interruptions (ex. an incoming phone call). + } + + func sceneWillEnterForeground(_ scene: UIScene) { + // Called as the scene transitions from the background to the foreground. + // Use this method to undo the changes made on entering the background. + } + + func sceneDidEnterBackground(_ scene: UIScene) { + // Called as the scene transitions from the foreground to the background. + // Use this method to save data, release shared resources, and store enough scene-specific state information + // to restore the scene back to its current state. + } + + +} + diff --git a/TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/ViewController.swift b/TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/ViewController.swift new file mode 100644 index 0000000..c642359 --- /dev/null +++ b/TestAssets/transitive-project-and-components/LargerMaster/LargerMaster/ViewController.swift @@ -0,0 +1,23 @@ +// +// ViewController.swift +// LargerMaster +// +// Created by Jared Carlson on 8/2/23. +// + +import UIKit +import LargerModule + +class ViewController: UIViewController { + + override func viewDidLoad() { + super.viewDidLoad() + + // Do any additional setup after loading the view. + let guesswork = 5 + print("Our fibonacci guess is \(guesswork)") + } + + +} + diff --git a/TestAssets/transitive-project-and-components/LargerMaster/LargerMasterTests/LargerMasterTests.swift b/TestAssets/transitive-project-and-components/LargerMaster/LargerMasterTests/LargerMasterTests.swift new file mode 100644 index 0000000..00f92e5 --- /dev/null +++ b/TestAssets/transitive-project-and-components/LargerMaster/LargerMasterTests/LargerMasterTests.swift @@ -0,0 +1,36 @@ +// +// LargerMasterTests.swift +// LargerMasterTests +// +// Created by Jared Carlson on 8/2/23. +// + +import XCTest +@testable import LargerMaster + +final class LargerMasterTests: XCTestCase { + + override func setUpWithError() throws { + // Put setup code here. This method is called before the invocation of each test method in the class. + } + + override func tearDownWithError() throws { + // Put teardown code here. This method is called after the invocation of each test method in the class. + } + + func testExample() throws { + // This is an example of a functional test case. + // Use XCTAssert and related functions to verify your tests produce the correct results. + // Any test you write for XCTest can be annotated as throws and async. + // Mark your test throws to produce an unexpected failure when your test encounters an uncaught error. + // Mark your test async to allow awaiting for asynchronous code to complete. Check the results with assertions afterwards. + } + + func testPerformanceExample() throws { + // This is an example of a performance test case. + self.measure { + // Put the code you want to measure the time of here. + } + } + +} diff --git a/TestAssets/transitive-project-and-components/LargerMaster/LargerMasterUITests/LargerMasterUITests.swift b/TestAssets/transitive-project-and-components/LargerMaster/LargerMasterUITests/LargerMasterUITests.swift new file mode 100644 index 0000000..1fcde51 --- /dev/null +++ b/TestAssets/transitive-project-and-components/LargerMaster/LargerMasterUITests/LargerMasterUITests.swift @@ -0,0 +1,41 @@ +// +// LargerMasterUITests.swift +// LargerMasterUITests +// +// Created by Jared Carlson on 8/2/23. +// + +import XCTest + +final class LargerMasterUITests: XCTestCase { + + override func setUpWithError() throws { + // Put setup code here. This method is called before the invocation of each test method in the class. + + // In UI tests it is usually best to stop immediately when a failure occurs. + continueAfterFailure = false + + // In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this. + } + + override func tearDownWithError() throws { + // Put teardown code here. This method is called after the invocation of each test method in the class. + } + + func testExample() throws { + // UI tests must launch the application that they test. + let app = XCUIApplication() + app.launch() + + // Use XCTAssert and related functions to verify your tests produce the correct results. + } + + func testLaunchPerformance() throws { + if #available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 7.0, *) { + // This measures how long it takes to launch your application. + measure(metrics: [XCTApplicationLaunchMetric()]) { + XCUIApplication().launch() + } + } + } +} diff --git a/TestAssets/transitive-project-and-components/LargerMaster/LargerMasterUITests/LargerMasterUITestsLaunchTests.swift b/TestAssets/transitive-project-and-components/LargerMaster/LargerMasterUITests/LargerMasterUITestsLaunchTests.swift new file mode 100644 index 0000000..2b3f286 --- /dev/null +++ b/TestAssets/transitive-project-and-components/LargerMaster/LargerMasterUITests/LargerMasterUITestsLaunchTests.swift @@ -0,0 +1,32 @@ +// +// LargerMasterUITestsLaunchTests.swift +// LargerMasterUITests +// +// Created by Jared Carlson on 8/2/23. +// + +import XCTest + +final class LargerMasterUITestsLaunchTests: XCTestCase { + + override class var runsForEachTargetApplicationUIConfiguration: Bool { + true + } + + override func setUpWithError() throws { + continueAfterFailure = false + } + + func testLaunch() throws { + let app = XCUIApplication() + app.launch() + + // Insert steps here to perform after app launch but before taking a screenshot, + // such as logging into a test account or navigating somewhere in the app + + let attachment = XCTAttachment(screenshot: app.screenshot()) + attachment.name = "Launch Screen" + attachment.lifetime = .keepAlways + add(attachment) + } +} diff --git a/TestAssets/transitive-project-and-components/LargerModule/LargerModule.xcodeproj/project.pbxproj b/TestAssets/transitive-project-and-components/LargerModule/LargerModule.xcodeproj/project.pbxproj new file mode 100644 index 0000000..a5ebf8c --- /dev/null +++ b/TestAssets/transitive-project-and-components/LargerModule/LargerModule.xcodeproj/project.pbxproj @@ -0,0 +1,595 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 56; + objects = { + +/* Begin PBXBuildFile section */ + 04BFCC092A7B2A2400A47844 /* LargerModule.docc in Sources */ = {isa = PBXBuildFile; fileRef = 04BFCC082A7B2A2400A47844 /* LargerModule.docc */; }; + 04BFCC0F2A7B2A2400A47844 /* LargerModule.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 04BFCC042A7B2A2400A47844 /* LargerModule.framework */; }; + 04BFCC142A7B2A2400A47844 /* LargerModuleTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04BFCC132A7B2A2400A47844 /* LargerModuleTests.swift */; }; + 04BFCC152A7B2A2400A47844 /* LargerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BFCC072A7B2A2400A47844 /* LargerModule.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 04BFCC2A2A7B2B6E00A47844 /* Module.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04BFCC292A7B2B6E00A47844 /* Module.swift */; }; + 04BFCC882A7B2DBA00A47844 /* LargerModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04BFCC872A7B2DBA00A47844 /* LargerModule.swift */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 04BFCC102A7B2A2400A47844 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 04BFCBFB2A7B2A2400A47844 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 04BFCC032A7B2A2400A47844; + remoteInfo = LargerModule; + }; + 04BFCC542A7B2C5400A47844 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 04BFCC4F2A7B2C5400A47844 /* Calculation.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 04BFCC352A7B2C5400A47844; + remoteInfo = Calculation; + }; + 04BFCC562A7B2C5400A47844 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 04BFCC4F2A7B2C5400A47844 /* Calculation.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 04BFCC3F2A7B2C5400A47844; + remoteInfo = CalculationTests; + }; + 04BFCC812A7B2C9200A47844 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 04BFCC7C2A7B2C9100A47844 /* AddOn.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 04BFCC622A7B2C9100A47844; + remoteInfo = AddOn; + }; + 04BFCC832A7B2C9200A47844 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 04BFCC7C2A7B2C9100A47844 /* AddOn.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 04BFCC6C2A7B2C9100A47844; + remoteInfo = AddOnTests; + }; + 04BFCC892A7B2EE500A47844 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 04BFCC4F2A7B2C5400A47844 /* Calculation.xcodeproj */; + proxyType = 1; + remoteGlobalIDString = 04BFCC342A7B2C5400A47844; + remoteInfo = Calculation; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 04BFCC042A7B2A2400A47844 /* LargerModule.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = LargerModule.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 04BFCC072A7B2A2400A47844 /* LargerModule.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LargerModule.h; sourceTree = ""; }; + 04BFCC082A7B2A2400A47844 /* LargerModule.docc */ = {isa = PBXFileReference; lastKnownFileType = folder.documentationcatalog; path = LargerModule.docc; sourceTree = ""; }; + 04BFCC0E2A7B2A2400A47844 /* LargerModuleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = LargerModuleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 04BFCC132A7B2A2400A47844 /* LargerModuleTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LargerModuleTests.swift; sourceTree = ""; }; + 04BFCC282A7B2B0F00A47844 /* SwiftCalc */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = SwiftCalc; path = ../SwiftCalc; sourceTree = ""; }; + 04BFCC292A7B2B6E00A47844 /* Module.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Module.swift; sourceTree = ""; }; + 04BFCC4F2A7B2C5400A47844 /* Calculation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = Calculation.xcodeproj; path = ../Calculation/Calculation.xcodeproj; sourceTree = ""; }; + 04BFCC7C2A7B2C9100A47844 /* AddOn.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = AddOn.xcodeproj; path = ../AddOn/AddOn.xcodeproj; sourceTree = ""; }; + 04BFCC872A7B2DBA00A47844 /* LargerModule.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LargerModule.swift; sourceTree = ""; }; + 04BFCC8D2A7B2FFB00A47844 /* SwiftMath */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = SwiftMath; path = ../SwiftMath; sourceTree = ""; }; + 04BFCC8E2A7B304200A47844 /* SwiftMath */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = SwiftMath; path = ../SwiftMath; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 04BFCC012A7B2A2400A47844 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04BFCC0B2A7B2A2400A47844 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 04BFCC0F2A7B2A2400A47844 /* LargerModule.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 04BFCBFA2A7B2A2400A47844 = { + isa = PBXGroup; + children = ( + 04BFCC7C2A7B2C9100A47844 /* AddOn.xcodeproj */, + 04BFCC4F2A7B2C5400A47844 /* Calculation.xcodeproj */, + 04BFCC272A7B2B0F00A47844 /* Packages */, + 04BFCC062A7B2A2400A47844 /* LargerModule */, + 04BFCC122A7B2A2400A47844 /* LargerModuleTests */, + 04BFCC052A7B2A2400A47844 /* Products */, + ); + sourceTree = ""; + }; + 04BFCC052A7B2A2400A47844 /* Products */ = { + isa = PBXGroup; + children = ( + 04BFCC042A7B2A2400A47844 /* LargerModule.framework */, + 04BFCC0E2A7B2A2400A47844 /* LargerModuleTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 04BFCC062A7B2A2400A47844 /* LargerModule */ = { + isa = PBXGroup; + children = ( + 04BFCC072A7B2A2400A47844 /* LargerModule.h */, + 04BFCC872A7B2DBA00A47844 /* LargerModule.swift */, + 04BFCC292A7B2B6E00A47844 /* Module.swift */, + 04BFCC082A7B2A2400A47844 /* LargerModule.docc */, + ); + path = LargerModule; + sourceTree = ""; + }; + 04BFCC122A7B2A2400A47844 /* LargerModuleTests */ = { + isa = PBXGroup; + children = ( + 04BFCC132A7B2A2400A47844 /* LargerModuleTests.swift */, + ); + path = LargerModuleTests; + sourceTree = ""; + }; + 04BFCC272A7B2B0F00A47844 /* Packages */ = { + isa = PBXGroup; + children = ( + 04BFCC282A7B2B0F00A47844 /* SwiftCalc */, + 04BFCC8D2A7B2FFB00A47844 /* SwiftMath */, + 04BFCC8E2A7B304200A47844 /* SwiftMath */, + ); + name = Packages; + sourceTree = ""; + }; + 04BFCC502A7B2C5400A47844 /* Products */ = { + isa = PBXGroup; + children = ( + 04BFCC552A7B2C5400A47844 /* Calculation.framework */, + 04BFCC572A7B2C5400A47844 /* CalculationTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 04BFCC7D2A7B2C9100A47844 /* Products */ = { + isa = PBXGroup; + children = ( + 04BFCC822A7B2C9200A47844 /* AddOn.framework */, + 04BFCC842A7B2C9200A47844 /* AddOnTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + 04BFCBFF2A7B2A2400A47844 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 04BFCC152A7B2A2400A47844 /* LargerModule.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + 04BFCC032A7B2A2400A47844 /* LargerModule */ = { + isa = PBXNativeTarget; + buildConfigurationList = 04BFCC182A7B2A2400A47844 /* Build configuration list for PBXNativeTarget "LargerModule" */; + buildPhases = ( + 04BFCBFF2A7B2A2400A47844 /* Headers */, + 04BFCC002A7B2A2400A47844 /* Sources */, + 04BFCC012A7B2A2400A47844 /* Frameworks */, + 04BFCC022A7B2A2400A47844 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 04BFCC8A2A7B2EE500A47844 /* PBXTargetDependency */, + ); + name = LargerModule; + productName = LargerModule; + productReference = 04BFCC042A7B2A2400A47844 /* LargerModule.framework */; + productType = "com.apple.product-type.framework"; + }; + 04BFCC0D2A7B2A2400A47844 /* LargerModuleTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 04BFCC1B2A7B2A2400A47844 /* Build configuration list for PBXNativeTarget "LargerModuleTests" */; + buildPhases = ( + 04BFCC0A2A7B2A2400A47844 /* Sources */, + 04BFCC0B2A7B2A2400A47844 /* Frameworks */, + 04BFCC0C2A7B2A2400A47844 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 04BFCC112A7B2A2400A47844 /* PBXTargetDependency */, + ); + name = LargerModuleTests; + productName = LargerModuleTests; + productReference = 04BFCC0E2A7B2A2400A47844 /* LargerModuleTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 04BFCBFB2A7B2A2400A47844 /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = 1; + LastSwiftUpdateCheck = 1430; + LastUpgradeCheck = 1430; + TargetAttributes = { + 04BFCC032A7B2A2400A47844 = { + CreatedOnToolsVersion = 14.3.1; + }; + 04BFCC0D2A7B2A2400A47844 = { + CreatedOnToolsVersion = 14.3.1; + }; + }; + }; + buildConfigurationList = 04BFCBFE2A7B2A2400A47844 /* Build configuration list for PBXProject "LargerModule" */; + compatibilityVersion = "Xcode 14.0"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 04BFCBFA2A7B2A2400A47844; + productRefGroup = 04BFCC052A7B2A2400A47844 /* Products */; + projectDirPath = ""; + projectReferences = ( + { + ProductGroup = 04BFCC7D2A7B2C9100A47844 /* Products */; + ProjectRef = 04BFCC7C2A7B2C9100A47844 /* AddOn.xcodeproj */; + }, + { + ProductGroup = 04BFCC502A7B2C5400A47844 /* Products */; + ProjectRef = 04BFCC4F2A7B2C5400A47844 /* Calculation.xcodeproj */; + }, + ); + projectRoot = ""; + targets = ( + 04BFCC032A7B2A2400A47844 /* LargerModule */, + 04BFCC0D2A7B2A2400A47844 /* LargerModuleTests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXReferenceProxy section */ + 04BFCC552A7B2C5400A47844 /* Calculation.framework */ = { + isa = PBXReferenceProxy; + fileType = wrapper.framework; + path = Calculation.framework; + remoteRef = 04BFCC542A7B2C5400A47844 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 04BFCC572A7B2C5400A47844 /* CalculationTests.xctest */ = { + isa = PBXReferenceProxy; + fileType = wrapper.cfbundle; + path = CalculationTests.xctest; + remoteRef = 04BFCC562A7B2C5400A47844 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 04BFCC822A7B2C9200A47844 /* AddOn.framework */ = { + isa = PBXReferenceProxy; + fileType = wrapper.framework; + path = AddOn.framework; + remoteRef = 04BFCC812A7B2C9200A47844 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 04BFCC842A7B2C9200A47844 /* AddOnTests.xctest */ = { + isa = PBXReferenceProxy; + fileType = wrapper.cfbundle; + path = AddOnTests.xctest; + remoteRef = 04BFCC832A7B2C9200A47844 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; +/* End PBXReferenceProxy section */ + +/* Begin PBXResourcesBuildPhase section */ + 04BFCC022A7B2A2400A47844 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04BFCC0C2A7B2A2400A47844 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 04BFCC002A7B2A2400A47844 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 04BFCC092A7B2A2400A47844 /* LargerModule.docc in Sources */, + 04BFCC2A2A7B2B6E00A47844 /* Module.swift in Sources */, + 04BFCC882A7B2DBA00A47844 /* LargerModule.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04BFCC0A2A7B2A2400A47844 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 04BFCC142A7B2A2400A47844 /* LargerModuleTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 04BFCC112A7B2A2400A47844 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 04BFCC032A7B2A2400A47844 /* LargerModule */; + targetProxy = 04BFCC102A7B2A2400A47844 /* PBXContainerItemProxy */; + }; + 04BFCC8A2A7B2EE500A47844 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Calculation; + targetProxy = 04BFCC892A7B2EE500A47844 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + 04BFCC162A7B2A2400A47844 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 04BFCC172A7B2A2400A47844 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 04BFCC192A7B2A2400A47844 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_KEY_NSHumanReadableCopyright = ""; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; + MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++20"; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.LargerModule; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 04BFCC1A2A7B2A2400A47844 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_KEY_NSHumanReadableCopyright = ""; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; + MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++20"; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.LargerModule; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; + 04BFCC1C2A7B2A2400A47844 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.LargerModuleTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 04BFCC1D2A7B2A2400A47844 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.LargerModuleTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 04BFCBFE2A7B2A2400A47844 /* Build configuration list for PBXProject "LargerModule" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04BFCC162A7B2A2400A47844 /* Debug */, + 04BFCC172A7B2A2400A47844 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 04BFCC182A7B2A2400A47844 /* Build configuration list for PBXNativeTarget "LargerModule" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04BFCC192A7B2A2400A47844 /* Debug */, + 04BFCC1A2A7B2A2400A47844 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 04BFCC1B2A7B2A2400A47844 /* Build configuration list for PBXNativeTarget "LargerModuleTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04BFCC1C2A7B2A2400A47844 /* Debug */, + 04BFCC1D2A7B2A2400A47844 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 04BFCBFB2A7B2A2400A47844 /* Project object */; +} diff --git a/TestAssets/transitive-project-and-components/LargerModule/LargerModule/LargerModule.docc/LargerModule.md b/TestAssets/transitive-project-and-components/LargerModule/LargerModule/LargerModule.docc/LargerModule.md new file mode 100755 index 0000000..c4c2f7d --- /dev/null +++ b/TestAssets/transitive-project-and-components/LargerModule/LargerModule/LargerModule.docc/LargerModule.md @@ -0,0 +1,13 @@ +# ``LargerModule`` + +Summary + +## Overview + +Text + +## Topics + +### Group + +- ``Symbol`` \ No newline at end of file diff --git a/TestAssets/transitive-project-and-components/LargerModule/LargerModule/LargerModule.h b/TestAssets/transitive-project-and-components/LargerModule/LargerModule/LargerModule.h new file mode 100644 index 0000000..f02f5db --- /dev/null +++ b/TestAssets/transitive-project-and-components/LargerModule/LargerModule/LargerModule.h @@ -0,0 +1,18 @@ +// +// LargerModule.h +// LargerModule +// +// Created by Jared Carlson on 8/2/23. +// + +#import + +//! Project version number for LargerModule. +FOUNDATION_EXPORT double LargerModuleVersionNumber; + +//! Project version string for LargerModule. +FOUNDATION_EXPORT const unsigned char LargerModuleVersionString[]; + +// In this header, you should import all the public headers of your framework using statements like #import + + diff --git a/TestAssets/transitive-project-and-components/LargerModule/LargerModule/LargerModule.swift b/TestAssets/transitive-project-and-components/LargerModule/LargerModule/LargerModule.swift new file mode 100644 index 0000000..dc3bdd3 --- /dev/null +++ b/TestAssets/transitive-project-and-components/LargerModule/LargerModule/LargerModule.swift @@ -0,0 +1,15 @@ +// +// LargerModule.swift +// LargerModule +// +// Created by Jared Carlson on 8/2/23. +// + +import Foundation +import SwiftCalc + +func fib_guess( ) -> Int { + let fib = Fibonacci(n: Int.random(in: 0...10)) + return (fib + Int.random(in: 0...10)) +} + diff --git a/TestAssets/transitive-project-and-components/LargerModule/LargerModule/Module.swift b/TestAssets/transitive-project-and-components/LargerModule/LargerModule/Module.swift new file mode 100644 index 0000000..363548e --- /dev/null +++ b/TestAssets/transitive-project-and-components/LargerModule/LargerModule/Module.swift @@ -0,0 +1,18 @@ +// +// Module.swift +// LargerModule +// +// Created by Jared Carlson on 8/2/23. +// + +import Foundation +import SwiftMath + +func guess() -> Int { + let variable = Int.random(in: 1..<1000) + return sub(lhs:1000, rhs: variable) +} + + + + diff --git a/TestAssets/transitive-project-and-components/LargerModule/LargerModuleTests/LargerModuleTests.swift b/TestAssets/transitive-project-and-components/LargerModule/LargerModuleTests/LargerModuleTests.swift new file mode 100644 index 0000000..bd817c2 --- /dev/null +++ b/TestAssets/transitive-project-and-components/LargerModule/LargerModuleTests/LargerModuleTests.swift @@ -0,0 +1,36 @@ +// +// LargerModuleTests.swift +// LargerModuleTests +// +// Created by Jared Carlson on 8/2/23. +// + +import XCTest +@testable import LargerModule + +final class LargerModuleTests: XCTestCase { + + override func setUpWithError() throws { + // Put setup code here. This method is called before the invocation of each test method in the class. + } + + override func tearDownWithError() throws { + // Put teardown code here. This method is called after the invocation of each test method in the class. + } + + func testExample() throws { + // This is an example of a functional test case. + // Use XCTAssert and related functions to verify your tests produce the correct results. + // Any test you write for XCTest can be annotated as throws and async. + // Mark your test throws to produce an unexpected failure when your test encounters an uncaught error. + // Mark your test async to allow awaiting for asynchronous code to complete. Check the results with assertions afterwards. + } + + func testPerformanceExample() throws { + // This is an example of a performance test case. + self.measure { + // Put the code you want to measure the time of here. + } + } + +} diff --git a/TestAssets/transitive-project-and-components/TransitivePBXtoSPM.xcworkspace/workspace.json b/TestAssets/transitive-project-and-components/TransitivePBXtoSPM.xcworkspace/workspace.json new file mode 100644 index 0000000..19a242e --- /dev/null +++ b/TestAssets/transitive-project-and-components/TransitivePBXtoSPM.xcworkspace/workspace.json @@ -0,0 +1,7902 @@ + + + + + $archiver + NSKeyedArchiver + $objects + + $null + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 2 + + + CF$UID + 3 + + + NS.objects + + + CF$UID + 4 + + + CF$UID + 309 + + + + BF9AA331-CB43-4568-B03F-AB963E65915B + IDEWorkspaceDocument + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 5 + + + CF$UID + 6 + + + CF$UID + 7 + + + CF$UID + 8 + + + CF$UID + 9 + + + CF$UID + 10 + + + CF$UID + 11 + + + NS.objects + + + CF$UID + 12 + + + CF$UID + 13 + + + CF$UID + 46 + + + CF$UID + 307 + + + CF$UID + 6 + + + CF$UID + 23 + + + CF$UID + 46 + + + + IDEWindowFrame + IDEWorkspaceTabController_2E27DF00-6F0D-4944-B291-94970D517F36 + IDEWindowTabBarWasVisibleWithSingleTab + IDEWorkspaceWindow_NSRestorableStateData + IDEActiveWorkspaceTabController + IDEWindowToolbarIsVisible + IDEWindowTabBarIsVisible + {{475, 179}, {1400, 900}} + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 14 + + + CF$UID + 15 + + + CF$UID + 16 + + + CF$UID + 17 + + + CF$UID + 18 + + + CF$UID + 19 + + + CF$UID + 20 + + + CF$UID + 21 + + + CF$UID + 22 + + + NS.objects + + + CF$UID + 23 + + + CF$UID + 24 + + + CF$UID + 168 + + + CF$UID + 169 + + + CF$UID + 172 + + + CF$UID + 173 + + + CF$UID + 175 + + + CF$UID + 23 + + + CF$UID + 178 + + + + IDEShowNavigator + IDENavigatorArea + IDEUtilitiesWidth + IDEInspectorArea + IDENavigatorWidth + ViewDebugger + MemoryGraphDebugger + IDEShowUtilities + IDEEditorArea + + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 25 + + + CF$UID + 26 + + + CF$UID + 27 + + + CF$UID + 28 + + + CF$UID + 29 + + + CF$UID + 30 + + + CF$UID + 31 + + + CF$UID + 32 + + + CF$UID + 33 + + + NS.objects + + + CF$UID + 34 + + + CF$UID + 50 + + + CF$UID + 33 + + + CF$UID + 63 + + + CF$UID + 74 + + + CF$UID + 84 + + + CF$UID + 119 + + + CF$UID + 129 + + + CF$UID + 151 + + + + Xcode.IDEKit.Navigator.Symbol + Xcode.IDESourceControlUI.Navigator.Changes + SelectedNavigator + GroupSelections + Xcode.IDENoticesKit.NoticeNavigator + Xcode.IDEKit.Navigator.Debug + Xcode.IDEKit.Navigator.Workspace + Xcode.IDEKit.Navigator.Test + Xcode.IDEKit.Navigator.Logs + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 35 + + + CF$UID + 36 + + + CF$UID + 37 + + + CF$UID + 38 + + + CF$UID + 39 + + + CF$UID + 40 + + + CF$UID + 41 + + + CF$UID + 42 + + + NS.objects + + + CF$UID + 23 + + + CF$UID + 23 + + + CF$UID + 43 + + + CF$UID + 23 + + + CF$UID + 45 + + + CF$UID + 46 + + + CF$UID + 47 + + + CF$UID + 46 + + + + IDESymbolNavigatorShowWorkspaceOnly + IDESymbolNavigatorShowHierarchy + IDEExpandedItems + IDESymbolNavigatorShowClassesOnly + IDESymbolNamePatternString + IDESymbolNavigatorShowUnusedCodeOnly + IDESymbolNavigatorSelectedSymbols + IDESymbolNavigatorShowContainersOnly + + $class + + CF$UID + 44 + + NS.objects + + + + $classes + + NSMutableArray + NSArray + NSObject + + $classname + NSMutableArray + + + + + $class + + CF$UID + 48 + + NS.objects + + + + $classes + + NSArray + NSObject + + $classname + NSArray + + + $classes + + NSMutableDictionary + NSDictionary + NSObject + + $classname + NSMutableDictionary + + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 51 + + + CF$UID + 52 + + + CF$UID + 53 + + + CF$UID + 54 + + + NS.objects + + + CF$UID + 55 + + + CF$UID + 57 + + + CF$UID + 58 + + + CF$UID + 55 + + + + FilterStateByModeKey + LastNavigatorMode + UnfilterStateByModeKey + FilteredUIStateByModeKey + + $class + + CF$UID + 56 + + NS.keys + + NS.objects + + + + $classes + + NSDictionary + NSObject + + $classname + NSDictionary + + IDENavigatorModeSolitary + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 59 + + + NS.objects + + + CF$UID + 60 + + + + IDENavigatorModeSolitary + + $class + + CF$UID + 62 + + codablePlistRepresentation + + CF$UID + 61 + + + + YnBsaXN0MDDUAQIDBAUGBw1ZaXRlbVN0YXRlXxAQbGFzdEFjY2Vzc2VkRGF0 + ZV5zY3JvbGxQb3NpdGlvbl1zZWxlY3RlZEl0ZW1zoDNBxTuilzcTMKIICqIJ + CSMAAAAAAAAAAKILDCNAcQAAAAAAACNAh/gAAAAAAKAIERsuPUtMVVhbZGdw + eQAAAAAAAAEBAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAB6 + + + $classes + + ExplorableOutlineViewArchivableUIState + _TtGCV16DVTExplorableKit26ExplorableOutlineViewTypes7UIState_VS_31ExplorableStateSavingIdentifier_ + NSObject + + $classname + ExplorableOutlineViewArchivableUIState + + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 64 + + + CF$UID + 65 + + + CF$UID + 66 + + + CF$UID + 67 + + + CF$UID + 68 + + + CF$UID + 69 + + + CF$UID + 70 + + + NS.objects + + + CF$UID + 25 + + + CF$UID + 71 + + + CF$UID + 33 + + + CF$UID + 72 + + + CF$UID + 73 + + + CF$UID + 32 + + + CF$UID + 26 + + + + Xcode.IDEKit.NavigatorGroup.Symbol + Xcode.IDEKit.NavigatorGroup.Debug + Xcode.IDEKit.NavigatorGroup.Logs + Xcode.IDEKit.NavigatorGroup.Structure + Xcode.IDEKit.NavigatorGroup.Issues + Xcode.IDEKit.NavigatorGroup.Test + Xcode.IDESourceControlUI.NavigatorGroup.WorkingCopies + Xcode.IDEKit.Navigator.Debug + Xcode.IDEKit.Navigator.Workspace + Xcode.IDENoticesKit.NoticeNavigator + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 75 + + + CF$UID + 76 + + + CF$UID + 77 + + + CF$UID + 78 + + + NS.objects + + + CF$UID + 55 + + + CF$UID + 79 + + + CF$UID + 80 + + + CF$UID + 55 + + + + FilterStateByModeKey + LastNavigatorMode + UnfilterStateByModeKey + FilteredUIStateByModeKey + IDENavigatorModeSolitary + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 81 + + + NS.objects + + + CF$UID + 82 + + + + IDENavigatorModeSolitary + + $class + + CF$UID + 62 + + codablePlistRepresentation + + CF$UID + 83 + + + + YnBsaXN0MDDUAQIDBAUGBw1ZaXRlbVN0YXRlXxAQbGFzdEFjY2Vzc2VkRGF0 + ZV5zY3JvbGxQb3NpdGlvbl1zZWxlY3RlZEl0ZW1zoDNBxTuipskiS6IICqIJ + CSMAAAAAAAAAAKILDCNAcQAAAAAAACNAiNgAAAAAAKAIERsuPUtMVVhbZGdw + eQAAAAAAAAEBAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAB6 + + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 85 + + + CF$UID + 86 + + + CF$UID + 87 + + + CF$UID + 88 + + + CF$UID + 89 + + + CF$UID + 90 + + + NS.objects + + + CF$UID + 91 + + + CF$UID + 92 + + + CF$UID + 108 + + + CF$UID + 23 + + + CF$UID + 118 + + + CF$UID + 46 + + + + IDEStackCompressionValue + IDEDebugTransientStates + DBGNavigatorContentMode + IDEShowOnlyRunningBlocks + IDEVisibleRect + IDEShowOnlyInterestingContent + 2 + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 93 + + + CF$UID + 94 + + + CF$UID + 95 + + + CF$UID + 96 + + + CF$UID + 97 + + + NS.objects + + + CF$UID + 98 + + + CF$UID + 23 + + + CF$UID + 23 + + + CF$UID + 102 + + + CF$UID + 117 + + + + IDEDebugExpandedItems + IDEDebugAlreadyShownForNewPausedState + IDEHaveInitiallyExpandedCPUDebuggingChildrenState + IDEDebugSelectedNavigableItems + IDECurrentLaunchSessionReferenceKey + + $class + + CF$UID + 101 + + NS.objects + + + CF$UID + 99 + + + CF$UID + 100 + + + + TransitiveTestApp + TransitiveTestApp %% 1 + + $classes + + NSMutableSet + NSSet + NSObject + + $classname + NSMutableSet + + + $class + + CF$UID + 44 + + NS.objects + + + CF$UID + 103 + + + + + $class + + CF$UID + 116 + + DocumentLocation + + CF$UID + 0 + + DomainIdentifier + + CF$UID + 104 + + IdentifierPath + + CF$UID + 105 + + IndexOfDocumentIdentifier + + CF$UID + 115 + + WorkspaceRootFilePath + + CF$UID + 0 + + + Xcode.IDENavigableItem.ExecutionEnvironmentDomain + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 106 + + + CF$UID + 110 + + + CF$UID + 112 + + + CF$UID + 113 + + + + + $class + + CF$UID + 109 + + Identifier + + CF$UID + 107 + + Index + + CF$UID + 108 + + + 0 ViewController.viewDidLoad() + 0 + + $classes + + IDEArchivableStringIndexPair + NSObject + + $classname + IDEArchivableStringIndexPair + + + $class + + CF$UID + 109 + + Identifier + + CF$UID + 111 + + Index + + CF$UID + 108 + + + Thread 1 + + $class + + CF$UID + 109 + + Identifier + + CF$UID + 99 + + Index + + CF$UID + 108 + + + + $class + + CF$UID + 109 + + Identifier + + CF$UID + 114 + + Index + + CF$UID + 108 + + + <debug session for TransitiveTestApp> + 9223372036854775807 + + $classes + + IDENavigableItemArchivableRepresentation + NSObject + + $classname + IDENavigableItemArchivableRepresentation + + 2c38c78e0 + {{0, 0}, {272, 795}} + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 120 + + + CF$UID + 121 + + + CF$UID + 122 + + + CF$UID + 123 + + + NS.objects + + + CF$UID + 55 + + + CF$UID + 124 + + + CF$UID + 125 + + + CF$UID + 55 + + + + FilterStateByModeKey + LastNavigatorMode + UnfilterStateByModeKey + FilteredUIStateByModeKey + IDENavigatorModeSolitary + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 126 + + + NS.objects + + + CF$UID + 127 + + + + IDENavigatorModeSolitary + + $class + + CF$UID + 62 + + codablePlistRepresentation + + CF$UID + 128 + + + + YnBsaXN0MDDUAQIDBAVlZmxZaXRlbVN0YXRlXxAQbGFzdEFjY2Vzc2VkRGF0 + ZV5zY3JvbGxQb3NpdGlvbl1zZWxlY3RlZEl0ZW1zrxAWBg0RFBgeIicrLzM4 + PEFESEtPU1hcYdIHCAkMVHBhdGhZaW5kZXhIaW50ogoLXxARVHJhbnNpdGl2 + ZVRlc3RBcHBfEBFUcmFuc2l0aXZlVGVzdEFwcBAA0g4PEAxfEBBsYXN0QWNj + ZXNzZWREYXRlXmV4cGFuc2lvblN0YXRlM0HFO6KXN/+s0gcIEgyhE18QEVRy + YW5zaXRpdmVUZXN0QXBw0hUWFwxfEBBsYXN0QWNjZXNzZWREYXRlXmV4cGFu + c2lvblN0YXRlM0HFO6KXOaOQ0gcIGR2jGhscXxARVHJhbnNpdGl2ZVRlc3RB + cHBfEBpTd2lmdENhbGN1bGF0aW9uLnhjb2RlcHJval8QFVN3aWZ0Q2FsY3Vs + YXRpb25UZXN0cxAB0h8gIQxfEBBsYXN0QWNjZXNzZWREYXRlXmV4cGFuc2lv + blN0YXRlM0HFO6KXN/+10gcIIyaiJCVfEBFUcmFuc2l0aXZlVGVzdEFwcF8Q + GFRyYW5zaXRpdmVUZXN0QXBwVUlUZXN0cxAC0igpKgxfEBBsYXN0QWNjZXNz + ZWREYXRlXmV4cGFuc2lvblN0YXRlM0HFO6KXN/+90gcILB2iLS5fEBFUcmFu + c2l0aXZlVGVzdEFwcF8QEVRyYW5zaXRpdmVUZXN0QXBw0jAxMgxfEBBsYXN0 + QWNjZXNzZWREYXRlXmV4cGFuc2lvblN0YXRlM0HFO6KXOarW0gcINAyjNTY3 + XxARVHJhbnNpdGl2ZVRlc3RBcHBfEBpTd2lmdENhbGN1bGF0aW9uLnhjb2Rl + cHJval8QEFN3aWZ0Q2FsY3VsYXRpb27SOTo7DF8QEGxhc3RBY2Nlc3NlZERh + dGVeZXhwYW5zaW9uU3RhdGUzQcU7opc3/8XSBwg9QKI+P18QEVRyYW5zaXRp + dmVUZXN0QXBwWkZyYW1ld29ya3MQBdJCQzsMXxAQbGFzdEFjY2Vzc2VkRGF0 + ZV5leHBhbnNpb25TdGF0ZdIHCEUdokZHXxARVHJhbnNpdGl2ZVRlc3RBcHBf + EBZUcmFuc2l0aXZlVGVzdEFwcFRlc3Rz0klKOwxfEBBsYXN0QWNjZXNzZWRE + YXRlXmV4cGFuc2lvblN0YXRl0gcITAyiTU5fEBFUcmFuc2l0aXZlVGVzdEFw + cF8QGlN3aWZ0Q2FsY3VsYXRpb24ueGNvZGVwcm9q0lBRUh1fEBBsYXN0QWNj + ZXNzZWREYXRlXmV4cGFuc2lvblN0YXRlM0HFO6KXPKQJ0gcIVAyjVVZXXxAR + VHJhbnNpdGl2ZVRlc3RBcHBfEBpTd2lmdENhbGN1bGF0aW9uLnhjb2RlcHJv + alhQYWNrYWdlc9JZWlsdXxAQbGFzdEFjY2Vzc2VkRGF0ZV5leHBhbnNpb25T + dGF0ZTNBxTuilzf/ztIHCF1gol5fXxARVHJhbnNpdGl2ZVRlc3RBcHBYUHJv + ZHVjdHMQBNJiY2QMXxAQbGFzdEFjY2Vzc2VkRGF0ZV5leHBhbnNpb25TdGF0 + ZTNBxTuilzmuWDNBxTuimAMz7KJnaaJoaCMAAAAAAAAAAKJqayNAcQAAAAAA + ACNAiNgAAAAAAKFt0gcIbgyhb18QEVRyYW5zaXRpdmVUZXN0QXBwAAgAEQAb + AC4APQBLAGQAaQBuAHgAewCPAKMApQCqAL0AzADVANoA3ADwAPUBCAEXASAB + JQEpAT0BWgFyAXQBeQGMAZsBpAGpAawBwAHbAd0B4gH1AgQCDQISAhUCKQI9 + AkICVQJkAm0CcgJ2AooCpwK6Ar8C0gLhAuoC7wLyAwYDEQMTAxgDKwM6Az8D + QgNWA28DdAOHA5YDmwOeA7IDzwPUA+cD9gP/BAQECAQcBDkEQgRHBFoEaQRy + BHcEegSOBJcEmQSeBLEEwATJBNIE1QTYBOEE5ATtBPYE+AT9BP8AAAAAAAAC + AQAAAAAAAABwAAAAAAAAAAAAAAAAAAAFEw== + + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 130 + + + CF$UID + 131 + + + CF$UID + 132 + + + CF$UID + 133 + + + CF$UID + 134 + + + CF$UID + 135 + + + CF$UID + 136 + + + NS.objects + + + CF$UID + 137 + + + CF$UID + 46 + + + CF$UID + 46 + + + CF$UID + 138 + + + CF$UID + 148 + + + CF$UID + 149 + + + CF$UID + 46 + + + + IDEVisibleRect + IDESkippedTestsFilteringEnabled + IDESchemeFilteringEnabled + IDEExpandedItemsTree + IDENavigatorScrollOffsetBeforeFiltering + IDESelectedTree + IDEFailedTestsFilteringEnabled + {{0, 0}, {272, 767}} + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 139 + + + NS.objects + + + CF$UID + 140 + + + + IDEValuesAsTree + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 141 + + + CF$UID + 142 + + + NS.objects + + + CF$UID + 143 + + + CF$UID + 146 + + + + TransitiveTestAppUITests + TransitiveTestAppTests + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 45 + + + CF$UID + 144 + + + CF$UID + 145 + + + NS.objects + + + CF$UID + 45 + + + CF$UID + 45 + + + CF$UID + 45 + + + + TransitiveTestAppUITests + TransitiveTestAppUITestsLaunchTests + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 45 + + + CF$UID + 147 + + + NS.objects + + + CF$UID + 45 + + + CF$UID + 45 + + + + TransitiveTestAppTests + {{0, 0}, {170, 241}} + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 139 + + + NS.objects + + + CF$UID + 150 + + + + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 142 + + + NS.objects + + + CF$UID + 45 + + + + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 152 + + + CF$UID + 153 + + + CF$UID + 154 + + + CF$UID + 155 + + + CF$UID + 156 + + + CF$UID + 157 + + + NS.objects + + + CF$UID + 46 + + + CF$UID + 158 + + + CF$UID + 23 + + + CF$UID + 46 + + + CF$UID + 166 + + + CF$UID + 167 + + + + IDELogNavigatorBotFilterStateKey + expandedIdentifiers + IDELogNavigatorGroupByKey + IDELogNavigatorRecentFilterStateKey + IDELogNavigatorVisibleRectStateKey + collapsedIdentifiers + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 159 + + + CF$UID + 160 + + + CF$UID + 161 + + + CF$UID + 162 + + + CF$UID + 163 + + + CF$UID + 164 + + + CF$UID + 165 + + + + record:AB874AD4-AD9E-4008-AE4C-6F68E4B858F6 + entity:TransitiveTestApp:scheme:TransitiveTestApp project:0 + project + record:C1654FD4-AACB-415A-8AE6-CA0EAFB3B5D5 + record:5656BF28-3BF3-40D8-8FEF-05B2B768EB02 + record:691508A3-08AC-4780-BDE1-A50979243C4B + record:FC1C434D-BCDA-4129-9BAB-8781DAF29B7B + {{0, 0}, {272, 739}} + + $class + + CF$UID + 48 + + NS.objects + + + 260 + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 170 + + + NS.objects + + + CF$UID + 171 + + + + userPreferredCategoryExtensionIDs + + $class + + CF$UID + 44 + + NS.objects + + + 272 + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 174 + + + NS.objects + + + CF$UID + 23 + + + + ShowsOnlyVisibleViewObjects + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 176 + + + CF$UID + 177 + + + NS.objects + + + CF$UID + 46 + + + CF$UID + 46 + + + + ShowsOnlyLeakedBlocks + XRShowsOnlyContentFromWorkspace + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 179 + + + CF$UID + 180 + + + CF$UID + 181 + + + CF$UID + 182 + + + CF$UID + 183 + + + CF$UID + 184 + + + CF$UID + 185 + + + CF$UID + 186 + + + CF$UID + 187 + + + CF$UID + 188 + + + CF$UID + 189 + + + NS.objects + + + CF$UID + 190 + + + CF$UID + 108 + + + CF$UID + 215 + + + CF$UID + 216 + + + CF$UID + 217 + + + CF$UID + 218 + + + CF$UID + 290 + + + CF$UID + 294 + + + CF$UID + 303 + + + CF$UID + 304 + + + CF$UID + 306 + + + + IDEDefaultDebugArea + BeforeComparisonMode_UserVisibleEditorMode + NavigationStyle + EditorMode + EditorMultipleSplitPrimaryLayout + EditorAreaSplitStates + primaryEditorArchivedRepresentation + DebuggerSplitView + DefaultPersistentRepresentations + SelectedEditorAreaSplitIndexPath + MaximizedState + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 191 + + + CF$UID + 192 + + + CF$UID + 193 + + + CF$UID + 194 + + + NS.objects + + + CF$UID + 195 + + + CF$UID + 200 + + + CF$UID + 212 + + + CF$UID + 213 + + + + LeftView + IDESplitViewDebugArea + LayoutMode + RightView + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 196 + + + CF$UID + 197 + + + CF$UID + 198 + + + CF$UID + 199 + + + NS.objects + + + CF$UID + 46 + + + CF$UID + 108 + + + CF$UID + 47 + + + CF$UID + 23 + + + + VariablesViewShowsRawValues + VariablesViewSelectedScope + VariablesViewViewSortDescriptors + VariablesViewShowsType + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 201 + + + NS.objects + + + CF$UID + 202 + + + + DVTSplitViewItems + + $class + + CF$UID + 44 + + NS.objects + + + CF$UID + 203 + + + CF$UID + 209 + + + + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 204 + + + CF$UID + 205 + + + CF$UID + 206 + + + NS.objects + + + CF$UID + 207 + + + CF$UID + 23 + + + CF$UID + 208 + + + + DVTIdentifier + DVTIsVisible + DVTViewMagnitude + LeftView + 298 + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 204 + + + CF$UID + 205 + + + CF$UID + 206 + + + NS.objects + + + CF$UID + 210 + + + CF$UID + 23 + + + CF$UID + 211 + + + + RightView + 567 + 1 + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 214 + + + NS.objects + + + CF$UID + 108 + + + + ConsoleFilterMode + OpenInTabs + 0 + Layout_LeftToRight + + $class + + CF$UID + 44 + + NS.objects + + + CF$UID + 219 + + + + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 220 + + + CF$UID + 221 + + + CF$UID + 222 + + + CF$UID + 223 + + + CF$UID + 224 + + + CF$UID + 225 + + + NS.objects + + + CF$UID + 226 + + + CF$UID + 227 + + + CF$UID + 279 + + + CF$UID + 226 + + + CF$UID + 289 + + + CF$UID + 46 + + + + EditorMode + EditorTabBarState + EditorHistoryStacks + EditorMode13+ + ItemKindKey + ShouldShowPullRequestComments + 0 + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 228 + + + CF$UID + 229 + + + CF$UID + 230 + + + NS.objects + + + CF$UID + 231 + + + CF$UID + 91 + + + CF$UID + 91 + + + + TabsAsHistoryItems + SelectedTabIndex + DynamicTabIndex + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 232 + + + CF$UID + 256 + + + CF$UID + 270 + + + + + $class + + CF$UID + 255 + + documentExtensionIdentifier + + CF$UID + 253 + + documentNavigableItemName + + CF$UID + 237 + + documentURL + + CF$UID + 250 + + fileDataType.stringRepresentation + + CF$UID + 252 + + navigableItemName + + CF$UID + 254 + + navigableItemRepresentation + + CF$UID + 233 + + stateDictionary + + CF$UID + 0 + + + + $class + + CF$UID + 116 + + DocumentLocation + + CF$UID + 244 + + DomainIdentifier + + CF$UID + 234 + + IdentifierPath + + CF$UID + 235 + + IndexOfDocumentIdentifier + + CF$UID + 108 + + WorkspaceRootFilePath + + CF$UID + 247 + + + Xcode.IDENavigableItemDomain.WorkspaceStructure + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 236 + + + CF$UID + 238 + + + CF$UID + 240 + + + CF$UID + 242 + + + + + $class + + CF$UID + 109 + + Identifier + + CF$UID + 237 + + Index + + CF$UID + 212 + + + Calculation.swift + + $class + + CF$UID + 109 + + Identifier + + CF$UID + 239 + + Index + + CF$UID + 212 + + + SwiftCalculation + + $class + + CF$UID + 109 + + Identifier + + CF$UID + 241 + + Index + + CF$UID + 108 + + + SwiftCalculation.xcodeproj + + $class + + CF$UID + 109 + + Identifier + + CF$UID + 243 + + Index + + CF$UID + 108 + + + TransitiveTestApp + + $class + + CF$UID + 246 + + documentURL + + CF$UID + 245 + + timestamp + + CF$UID + 0 + + + file:///Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation/SwiftCalculation/Calculation.swift + + $classes + + DVTDocumentLocation + NSObject + + $classname + DVTDocumentLocation + + + $class + + CF$UID + 249 + + pathString + + CF$UID + 248 + + + /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components + + $classes + + DVTFilePath + NSObject + + $classname + DVTFilePath + + + $class + + CF$UID + 251 + + NS.base + + CF$UID + 0 + + NS.relative + + CF$UID + 245 + + + + $classes + + NSURL + NSObject + + $classname + NSURL + + public.swift-source + Xcode.IDEKit.EditorDocument.PegasusSourceCode + viewDidLoad() + + $classes + + IDEEditorHistoryItem + NSObject + + $classname + IDEEditorHistoryItem + + + $class + + CF$UID + 255 + + documentExtensionIdentifier + + CF$UID + 267 + + documentNavigableItemName + + CF$UID + 261 + + documentURL + + CF$UID + 265 + + fileDataType.stringRepresentation + + CF$UID + 266 + + navigableItemName + + CF$UID + 261 + + navigableItemRepresentation + + CF$UID + 257 + + stateDictionary + + CF$UID + 268 + + + + $class + + CF$UID + 116 + + DocumentLocation + + CF$UID + 263 + + DomainIdentifier + + CF$UID + 258 + + IdentifierPath + + CF$UID + 259 + + IndexOfDocumentIdentifier + + CF$UID + 262 + + WorkspaceRootFilePath + + CF$UID + 247 + + + Xcode.IDENavigableItem.WorkspaceByTimeLogsDomain + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 260 + + + + + $class + + CF$UID + 109 + + Identifier + + CF$UID + 261 + + Index + + CF$UID + 108 + + + Archive TransitiveTestApp + 9223372036854775807 + + $class + + CF$UID + 246 + + documentURL + + CF$UID + 264 + + timestamp + + CF$UID + 0 + + + x-xcode-log://FCCF9513-02E7-429D-8A2B-7D41C9930616 + + $class + + CF$UID + 251 + + NS.base + + CF$UID + 0 + + NS.relative + + CF$UID + 264 + + + com.apple.dt.IDE.BuildLogContentType + Xcode.IDEKit.EditorDocument.LogDocument + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 269 + + + NS.objects + + + CF$UID + 47 + + + + SelectedDocumentLocations + + $class + + CF$UID + 255 + + documentExtensionIdentifier + + CF$UID + 267 + + documentNavigableItemName + + CF$UID + 274 + + documentURL + + CF$UID + 278 + + fileDataType.stringRepresentation + + CF$UID + 266 + + navigableItemName + + CF$UID + 261 + + navigableItemRepresentation + + CF$UID + 271 + + stateDictionary + + CF$UID + 0 + + + + $class + + CF$UID + 116 + + DocumentLocation + + CF$UID + 276 + + DomainIdentifier + + CF$UID + 258 + + IdentifierPath + + CF$UID + 272 + + IndexOfDocumentIdentifier + + CF$UID + 275 + + WorkspaceRootFilePath + + CF$UID + 247 + + + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 273 + + + + + $class + + CF$UID + 109 + + Identifier + + CF$UID + 274 + + Index + + CF$UID + 91 + + + Archive TransitiveTestApp + 9223372036854775807 + + $class + + CF$UID + 246 + + documentURL + + CF$UID + 277 + + timestamp + + CF$UID + 0 + + + x-xcode-log://FC1C434D-BCDA-4129-9BAB-8781DAF29B7B + + $class + + CF$UID + 251 + + NS.base + + CF$UID + 0 + + NS.relative + + CF$UID + 277 + + + + $class + + CF$UID + 44 + + NS.objects + + + CF$UID + 280 + + + + + $class + + CF$UID + 288 + + currentEditorHistoryItem + + CF$UID + 281 + + + + $class + + CF$UID + 255 + + documentExtensionIdentifier + + CF$UID + 267 + + documentNavigableItemName + + CF$UID + 274 + + documentURL + + CF$UID + 278 + + fileDataType.stringRepresentation + + CF$UID + 266 + + navigableItemName + + CF$UID + 274 + + navigableItemRepresentation + + CF$UID + 282 + + stateDictionary + + CF$UID + 286 + + + + $class + + CF$UID + 116 + + DocumentLocation + + CF$UID + 276 + + DomainIdentifier + + CF$UID + 258 + + IdentifierPath + + CF$UID + 283 + + IndexOfDocumentIdentifier + + CF$UID + 285 + + WorkspaceRootFilePath + + CF$UID + 247 + + + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 284 + + + + + $class + + CF$UID + 109 + + Identifier + + CF$UID + 274 + + Index + + CF$UID + 91 + + + 9223372036854775807 + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 287 + + + NS.objects + + + CF$UID + 47 + + + + SelectedDocumentLocations + + $classes + + IDEEditorHistoryStack + NSObject + + $classname + IDEEditorHistoryStack + + ItemKind_Editor + + $class + + CF$UID + 116 + + DocumentLocation + + CF$UID + 276 + + DomainIdentifier + + CF$UID + 258 + + IdentifierPath + + CF$UID + 291 + + IndexOfDocumentIdentifier + + CF$UID + 293 + + WorkspaceRootFilePath + + CF$UID + 247 + + + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 292 + + + + + $class + + CF$UID + 109 + + Identifier + + CF$UID + 274 + + Index + + CF$UID + 91 + + + 9223372036854775807 + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 295 + + + NS.objects + + + CF$UID + 296 + + + + DVTSplitViewItems + + $class + + CF$UID + 44 + + NS.objects + + + CF$UID + 297 + + + CF$UID + 300 + + + + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 204 + + + CF$UID + 205 + + + CF$UID + 206 + + + NS.objects + + + CF$UID + 298 + + + CF$UID + 23 + + + CF$UID + 299 + + + + IDEEditor + 785 + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 204 + + + CF$UID + 205 + + + CF$UID + 206 + + + NS.objects + + + CF$UID + 301 + + + CF$UID + 23 + + + CF$UID + 302 + + + + IDEDebuggerArea + 115 + + $class + + CF$UID + 49 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 305 + + NSIndexPathLength + 1 + NSIndexPathValue + 0 + + + $classes + + NSIndexPath + NSObject + + $classname + NSIndexPath + + 0 + + $class + + CF$UID + 308 + + NS.data + + YnBsaXN0MDDUAQIDBAUGBytYJHZlcnNpb25ZJGFyY2hpdmVyVCR0 + b3BYJG9iamVjdHMSAAGGoF8QD05TS2V5ZWRBcmNoaXZlct8QEggJ + CgsMDQ4PEBESExQVFhcYGRobHB0eHx4hIiMkJSYnKCknKl1OU1dp + bmRvd0ZyYW1lV05TVGl0bGVfEBFfTlNXaW5kb3dSZXN0b3JlclpO + U1RhYkJyVmlzV05TSXNLZXlWTlNVSUlEWE5TSXNNYWluXxAQTlNG + aXJzdFJlc3BvbmRlcl8QF05TVW5tYW5hZ2VkV2luZG93RnJhbWUy + W05TQ2xhc3NOYW1lW05TU3R5bGVNYXNrXxAmTlNXaW5kb3dNYW5h + Z2VtZW50UGVyc2lzdGVudElkZW50aWZpZXJfEBBfTlNXaW5kb3dM + YXlvdXRzXxAZX05TV2luZG93UmVzaXplR2VuZXJhdGlvbl8QE05T + V2luZG93V29ya3NwYWNlSURaTlNUYWJHcnBJRFhOU1RhYklkeF5O + U1dpbmRvd051bWJlcoACgASABwgJgAMJgAiAAIAFEYAPgAGACxAA + gAaAFRIAAyc9rxAWLC0uLzAxMjM0OzxCSlBRUlVcXV5hZFUkbnVs + bF8QJEQ2QkJDODk1LTQzMkUtNDQ5Qy1BNDk4LURCNDNGMkU0NTNB + RF8QHzQ3NSAxNzkgMTQwMCA5MDAgMCAwIDE3MjggMTA3OSBVX05T + OjhvEDMAVAByAGEAbgBzAGkAdABpAHYAZQBQAEIAWAB0AG8AUwBQ + AE0AICAUACAAVAByAGEAbgBzAGkAdABpAHYAZQBQAEIAWAB0AG8A + UwBQAE0ALgB4AGMAdwBvAHIAawBzAHAAYQBjAGVfEBJJREVXb3Jr + c3BhY2VXaW5kb3dQXxAVSURFRG9jdW1lbnRDb250cm9sbGVy0zU2 + Nzg5OlYkY2xhc3NYd2luZG93SURfEBRwZXJzaXN0ZW50SWRlbnRp + ZmllcoAKEAOACVZfTlM6MzTSPT4/QFokY2xhc3NuYW1lWCRjbGFz + c2VzXxAeTlNQZXJzaXN0ZW50VUlFbmNvZGVkUmVmZXJlbmNloj9B + WE5TT2JqZWN000NENUVHSVdOUy5rZXlzWk5TLm9iamVjdHOhRoAM + oUiAEIAU00tMNU1OT18QGE5TU2NyZWVuTGF5b3V0VVVJRFN0cmlu + Z18QEk5TU2NyZWVuTGF5b3V0U2l6ZYANgA6AD18QJDM3RDg4MzJB + LTJENjYtMDJDQS1COUY3LThGMzBBMzAxQjIzMFx7MTcyOCwgMTEx + N33SPT5TVF5OU1NjcmVlbkxheW91dKJTQdRWVzVYWSdaW18QH05T + V2luZG93TGF5b3V0U2NyZWVuTGF5b3V0RnJhbWVfEB5OU1dpbmRv + d0xheW91dFJlc2l6ZUdlbmVyYXRpb25fEBlOU1dpbmRvd0xheW91 + dFdpbmRvd0ZyYW1lgBKAE4ARXxAZe3s0NzUsIDE3OX0sIHsxNDAw + LCA5MDB9fV8QFnt7MCwgMH0sIHsxNzI4LCAxMDc5fX3SPT5fYF5O + U1dpbmRvd0xheW91dKJfQdI9PmJjXE5TRGljdGlvbmFyeaJiQV4w + eDYwMDAwNmE3MGUxMAAIABEAGgAkACkAMgA3AEkAcAB+AIYAmgCl + AK0AtAC9ANAA6gD2AQIBKwE+AVoBcAF7AYQBkwGVAZcBmQGaAZsB + nQGeAaABogGkAacBqQGrAa0BrwGxAbYBzwHVAfwCHgIkAo0CogKj + ArsCwgLJAtIC6QLrAu0C7wL2AvsDBgMPAzADMwM8A0MDSwNWA1gD + WgNcA14DYANnA4IDlwOZA5sDnQPEA9ED1gPlA+gD8QQTBDQEUARS + BFQEVgRyBIsEkASfBKIEpwS0BLcAAAAAAAACAQAAAAAAAABlAAAA + AAAAAAAAAAAAAAAExg== + + + + $classes + + NSMutableData + NSData + NSObject + + $classname + NSMutableData + + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 310 + + + CF$UID + 311 + + + CF$UID + 312 + + + CF$UID + 313 + + + CF$UID + 314 + + + CF$UID + 315 + + + CF$UID + 316 + + + CF$UID + 317 + + + CF$UID + 318 + + + CF$UID + 319 + + + CF$UID + 320 + + + NS.objects + + + CF$UID + 23 + + + CF$UID + 321 + + + CF$UID + 682 + + + CF$UID + 703 + + + CF$UID + 706 + + + CF$UID + 721 + + + CF$UID + 748 + + + CF$UID + 749 + + + CF$UID + 108 + + + CF$UID + 751 + + + CF$UID + 752 + + + + BreakpointsActivated + DefaultEditorStatesForURLs + RunContextRecents + ActiveScheme + ActiveRunDestination + LastCompletedPersistentSchemeBasedActivityReport + DocumentWindows + WindowArrangementDebugInfo + RosettaRunDestinationVisibility + SelectedWindows + RecentEditorDocumentURLs + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 267 + + + CF$UID + 322 + + + CF$UID + 323 + + + NS.objects + + + CF$UID + 324 + + + CF$UID + 336 + + + CF$UID + 477 + + + + Xcode.Xcode3ProjectSupport.EditorDocument.Xcode3Project + Xcode.IDEKit.EditorDocument.PegasusSourceCode + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 325 + + + CF$UID + 327 + + + CF$UID + 329 + + + CF$UID + 265 + + + NS.objects + + + CF$UID + 331 + + + CF$UID + 333 + + + CF$UID + 334 + + + CF$UID + 335 + + + + + $class + + CF$UID + 251 + + NS.base + + CF$UID + 0 + + NS.relative + + CF$UID + 326 + + + x-xcode-log://691508A3-08AC-4780-BDE1-A50979243C4B + + $class + + CF$UID + 251 + + NS.base + + CF$UID + 0 + + NS.relative + + CF$UID + 328 + + + x-xcode-log://AB874AD4-AD9E-4008-AE4C-6F68E4B858F6 + + $class + + CF$UID + 251 + + NS.base + + CF$UID + 0 + + NS.relative + + CF$UID + 330 + + + x-xcode-log://FC1C434D-BCDA-4129-9BAB-8781DAF29B7B + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 332 + + + NS.objects + + + CF$UID + 47 + + + + SelectedDocumentLocations + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 332 + + + NS.objects + + + CF$UID + 47 + + + + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 332 + + + NS.objects + + + CF$UID + 47 + + + + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 332 + + + NS.objects + + + CF$UID + 47 + + + + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 337 + + + CF$UID + 339 + + + CF$UID + 341 + + + CF$UID + 343 + + + NS.objects + + + CF$UID + 345 + + + CF$UID + 388 + + + CF$UID + 432 + + + CF$UID + 442 + + + + + $class + + CF$UID + 251 + + NS.base + + CF$UID + 0 + + NS.relative + + CF$UID + 338 + + + file:///Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation/SwiftCalculation.xcodeproj + + $class + + CF$UID + 251 + + NS.base + + CF$UID + 0 + + NS.relative + + CF$UID + 340 + + + file:///Users/jaredcarlson/Projects/Veracode/transitive-project/TransitiveTestApp/TransitiveTestApp.xcodeproj + + $class + + CF$UID + 251 + + NS.base + + CF$UID + 0 + + NS.relative + + CF$UID + 342 + + + file:///Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp.xcodeproj + + $class + + CF$UID + 251 + + NS.base + + CF$UID + 0 + + NS.relative + + CF$UID + 344 + + + file:///Users/jaredcarlson/Projects/Veracode/transitive-project/SwiftCalculation/SwiftCalculation.xcodeproj + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 346 + + + CF$UID + 347 + + + CF$UID + 348 + + + CF$UID + 349 + + + CF$UID + 350 + + + CF$UID + 351 + + + NS.objects + + + CF$UID + 352 + + + CF$UID + 364 + + + CF$UID + 365 + + + CF$UID + 385 + + + CF$UID + 386 + + + CF$UID + 387 + + + + Xcode3ProjectEditorSelectedDocumentLocations + Xcode3ProjectEditorPreviousTargetEditorClass + Xcode3ProjectEditor_Xcode3BuildPhasesEditor + Xcode3ProjectEditor_Xcode3SigningEditor + Xcode3ProjectEditor_Xcode3BuildSettingsEditor + Xcode3ProjectEditor_Xcode3TargetEditor + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 353 + + + + + $class + + CF$UID + 363 + + documentURL + + CF$UID + 338 + + selection + + CF$UID + 355 + + timestamp + + CF$UID + 354 + + + 712458851.59414697 + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 356 + + + CF$UID + 357 + + + CF$UID + 358 + + + NS.objects + + + CF$UID + 359 + + + CF$UID + 360 + + + CF$UID + 361 + + + + Editor + Target + Xcode3BuildPhasesEditorLocations + Xcode3BuildPhasesEditor + SwiftCalculation + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 362 + + + + + $class + + CF$UID + 49 + + NS.keys + + NS.objects + + + + $classes + + Xcode3ProjectDocumentLocation + DVTDocumentLocation + NSObject + + $classname + Xcode3ProjectDocumentLocation + + Xcode3BuildPhasesEditor + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 366 + + + CF$UID + 367 + + + CF$UID + 368 + + + CF$UID + 369 + + + CF$UID + 370 + + + CF$UID + 371 + + + CF$UID + 372 + + + CF$UID + 373 + + + CF$UID + 374 + + + NS.objects + + + CF$UID + 375 + + + CF$UID + 376 + + + CF$UID + 377 + + + CF$UID + 378 + + + CF$UID + 379 + + + CF$UID + 381 + + + CF$UID + 382 + + + CF$UID + 383 + + + CF$UID + 384 + + + + 0495B63B2A74C03600327A4E + 0495B63D2A74C03600327A4E + Xcode3BuildPhasesEditorFilterKey + 0495B63E2A74C03600327A4E-PluginUsage + Xcode3BuildPhasesEditorDisclosedNamesKey2.0 + 0495B63C2A74C03600327A4E + 0495B63A2A74C03600327A4E + 0495B63E2A74C03600327A4E + kXcode3BuildPhasesEditorScrollPointKey + + $class + + CF$UID + 49 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 49 + + NS.keys + + NS.objects + + + + + $class + + CF$UID + 49 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 101 + + NS.objects + + + CF$UID + 380 + + + + Link Binary With Libraries + + $class + + CF$UID + 49 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 49 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 49 + + NS.keys + + NS.objects + + + {0, 0} + + $class + + CF$UID + 49 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 49 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 49 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 389 + + + CF$UID + 390 + + + CF$UID + 391 + + + CF$UID + 392 + + + CF$UID + 393 + + + CF$UID + 394 + + + CF$UID + 395 + + + NS.objects + + + CF$UID + 396 + + + CF$UID + 397 + + + CF$UID + 416 + + + CF$UID + 417 + + + CF$UID + 418 + + + CF$UID + 419 + + + CF$UID + 420 + + + + Xcode3ProjectEditorPreviousProjectEditorClass + Xcode3ProjectEditor_Xcode3BuildPhasesEditor + Xcode3ProjectEditor_Xcode3ProjectInfoEditor + Xcode3ProjectEditorPreviousTargetEditorClass + Xcode3ProjectEditor_Xcode3BuildSettingsEditor + Xcode3ProjectEditor_Xcode3PackagesEditor + Xcode3ProjectEditorSelectedDocumentLocations + Xcode3BuildSettingsEditor + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 398 + + + CF$UID + 399 + + + CF$UID + 400 + + + CF$UID + 401 + + + CF$UID + 402 + + + CF$UID + 403 + + + CF$UID + 404 + + + CF$UID + 405 + + + NS.objects + + + CF$UID + 406 + + + CF$UID + 407 + + + CF$UID + 408 + + + CF$UID + 409 + + + CF$UID + 410 + + + CF$UID + 414 + + + CF$UID + 415 + + + CF$UID + 384 + + + + 0495B5FE2A74BFE300327A4E + 0495B6002A74BFE300327A4E + Xcode3BuildPhasesEditorFilterKey + 0495B6012A74BFE300327A4E-PluginUsage + Xcode3BuildPhasesEditorDisclosedNamesKey2.0 + 0495B6012A74BFE300327A4E + 0495B5FF2A74BFE300327A4E + kXcode3BuildPhasesEditorScrollPointKey + + $class + + CF$UID + 49 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 49 + + NS.keys + + NS.objects + + + + + $class + + CF$UID + 49 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 101 + + NS.objects + + + CF$UID + 411 + + + CF$UID + 412 + + + CF$UID + 413 + + + + Link Binary With Libraries + Target Dependencies + Run Build Tool Plug-ins + + $class + + CF$UID + 49 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 49 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 49 + + NS.keys + + NS.objects + + + Xcode3BuildPhasesEditor + + $class + + CF$UID + 49 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 49 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 421 + + + + + $class + + CF$UID + 363 + + documentURL + + CF$UID + 422 + + selection + + CF$UID + 424 + + timestamp + + CF$UID + 423 + + + file:///Users/jaredcarlson/Projects/Veracode/transitive-project/TransitiveTestApp/TransitiveTestApp.xcodeproj + 712294726.06539905 + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 425 + + + CF$UID + 426 + + + CF$UID + 427 + + + NS.objects + + + CF$UID + 428 + + + CF$UID + 429 + + + CF$UID + 430 + + + + Editor + Target + Xcode3BuildPhasesEditorLocations + Xcode3BuildPhasesEditor + TransitiveTestApp + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 431 + + + + + $class + + CF$UID + 49 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 346 + + + CF$UID + 347 + + + CF$UID + 433 + + + NS.objects + + + CF$UID + 434 + + + CF$UID + 440 + + + CF$UID + 441 + + + + Xcode3ProjectEditor_Xcode3SigningEditor + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 435 + + + + + $class + + CF$UID + 363 + + documentURL + + CF$UID + 342 + + selection + + CF$UID + 437 + + timestamp + + CF$UID + 436 + + + 712459613.69066095 + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 356 + + + CF$UID + 357 + + + NS.objects + + + CF$UID + 438 + + + CF$UID + 439 + + + + Xcode3SigningEditor + TransitiveTestApp + Xcode3SigningEditor + + $class + + CF$UID + 49 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 389 + + + CF$UID + 443 + + + CF$UID + 392 + + + CF$UID + 444 + + + CF$UID + 445 + + + CF$UID + 446 + + + CF$UID + 395 + + + NS.objects + + + CF$UID + 447 + + + CF$UID + 448 + + + CF$UID + 463 + + + CF$UID + 464 + + + CF$UID + 465 + + + CF$UID + 466 + + + CF$UID + 467 + + + + Xcode3ProjectEditor_Xcode3BuildPhasesEditor + Xcode3ProjectEditor_Xcode3BuildSettingsEditor + Xcode3ProjectEditor_Xcode3PackagesEditor + Xcode3ProjectEditor_Xcode3TargetEditor + Xcode3PackagesEditor + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 449 + + + CF$UID + 450 + + + CF$UID + 400 + + + CF$UID + 451 + + + CF$UID + 402 + + + CF$UID + 452 + + + CF$UID + 453 + + + CF$UID + 454 + + + CF$UID + 405 + + + NS.objects + + + CF$UID + 455 + + + CF$UID + 456 + + + CF$UID + 408 + + + CF$UID + 457 + + + CF$UID + 458 + + + CF$UID + 460 + + + CF$UID + 461 + + + CF$UID + 462 + + + CF$UID + 384 + + + + 0495B63B2A74C03600327A4E + 0495B63D2A74C03600327A4E + 0495B63E2A74C03600327A4E-PluginUsage + 0495B63C2A74C03600327A4E + 0495B63A2A74C03600327A4E + 0495B63E2A74C03600327A4E + + $class + + CF$UID + 49 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 49 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 49 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 101 + + NS.objects + + + CF$UID + 459 + + + + Link Binary With Libraries + + $class + + CF$UID + 49 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 49 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 49 + + NS.keys + + NS.objects + + + Xcode3BuildPhasesEditor + + $class + + CF$UID + 49 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 49 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 49 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 468 + + + + + $class + + CF$UID + 363 + + documentURL + + CF$UID + 469 + + selection + + CF$UID + 471 + + timestamp + + CF$UID + 470 + + + file:///Users/jaredcarlson/Projects/Veracode/transitive-project/SwiftCalculation/SwiftCalculation.xcodeproj + 712294655.67056406 + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 425 + + + CF$UID + 426 + + + CF$UID + 472 + + + NS.objects + + + CF$UID + 473 + + + CF$UID + 474 + + + CF$UID + 475 + + + + Xcode3BuildPhasesEditorLocations + Xcode3BuildPhasesEditor + SwiftCalculation + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 476 + + + + + $class + + CF$UID + 49 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 478 + + + CF$UID + 480 + + + CF$UID + 482 + + + CF$UID + 484 + + + CF$UID + 486 + + + CF$UID + 488 + + + CF$UID + 490 + + + CF$UID + 492 + + + CF$UID + 494 + + + NS.objects + + + CF$UID + 496 + + + CF$UID + 519 + + + CF$UID + 539 + + + CF$UID + 559 + + + CF$UID + 579 + + + CF$UID + 602 + + + CF$UID + 622 + + + CF$UID + 643 + + + CF$UID + 662 + + + + + $class + + CF$UID + 251 + + NS.base + + CF$UID + 0 + + NS.relative + + CF$UID + 479 + + + file:///Users/jaredcarlson/Projects/Veracode/transitive-project/SwiftMath/Package.swift + + $class + + CF$UID + 251 + + NS.base + + CF$UID + 0 + + NS.relative + + CF$UID + 481 + + + file:///Users/jaredcarlson/Projects/Veracode/transitive-project/TransitiveTestApp/TransitiveTestApp/AppDelegate.swift + + $class + + CF$UID + 251 + + NS.base + + CF$UID + 0 + + NS.relative + + CF$UID + 483 + + + file:///Users/jaredcarlson/Projects/Veracode/transitive-project/SwiftCalculation/SwiftCalculationTests/SwiftCalculationTests.swift + + $class + + CF$UID + 251 + + NS.base + + CF$UID + 0 + + NS.relative + + CF$UID + 485 + + + file:///Users/jaredcarlson/Projects/Veracode/transitive-project/TransitiveTestApp/TransitiveTestApp/SceneDelegate.swift + + $class + + CF$UID + 251 + + NS.base + + CF$UID + 0 + + NS.relative + + CF$UID + 487 + + + file:///Users/jaredcarlson/Projects/Veracode/transitive-project/TransitiveTestApp/TransitiveTestApp/ViewController.swift + + $class + + CF$UID + 251 + + NS.base + + CF$UID + 0 + + NS.relative + + CF$UID + 489 + + + file:///Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp/ViewController.swift + + $class + + CF$UID + 251 + + NS.base + + CF$UID + 0 + + NS.relative + + CF$UID + 491 + + + file:///Users/jaredcarlson/Projects/Veracode/transitive-project/SwiftCalculation/SwiftCalculation/Calculation.swift + + $class + + CF$UID + 251 + + NS.base + + CF$UID + 0 + + NS.relative + + CF$UID + 493 + + + file:///Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-and-components/SwiftCalculation/SwiftCalculation/Calculation.swift + + $class + + CF$UID + 251 + + NS.base + + CF$UID + 0 + + NS.relative + + CF$UID + 495 + + + file:///Users/jaredcarlson/Projects/Veracode/transitive-project/SwiftCalculation/SwiftCalculation/SwiftCalculation.h + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 497 + + + CF$UID + 498 + + + CF$UID + 499 + + + CF$UID + 500 + + + CF$UID + 501 + + + CF$UID + 502 + + + CF$UID + 503 + + + CF$UID + 504 + + + CF$UID + 505 + + + CF$UID + 506 + + + NS.objects + + + CF$UID + 507 + + + CF$UID + 46 + + + CF$UID + 46 + + + CF$UID + 46 + + + CF$UID + 509 + + + CF$UID + 515 + + + CF$UID + 108 + + + CF$UID + 46 + + + CF$UID + 516 + + + CF$UID + 23 + + + + SourceCodeEditor.selection + SourceCodeEditor.showMinimap + SourceCodeEditor.showCodeCoverage + SourceCodeEditor.showInvisibles + SourceCodeEditor.layoutExtensions + SourceCodeEditor.scrollState.offset + SourceCodeEditor.scrollState.line + SourceCodeEditor.showAuthors + SourceCodeEditor.codeFolding + SourceCodeEditor.wrapLines + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 508 + + + + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 108 + + + CF$UID + 108 + + + CF$UID + 108 + + + CF$UID + 108 + + + + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 510 + + + NS.objects + + + CF$UID + 511 + + + + DeltaEditorLayoutExtension + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 512 + + + CF$UID + 513 + + + NS.objects + + + CF$UID + 47 + + + CF$UID + 514 + + + + lineIndexes + documentLength + 788 + 0.0 + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 517 + + + CF$UID + 518 + + + NS.objects + + + CF$UID + 47 + + + CF$UID + 514 + + + + folds + documentLength + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 520 + + + CF$UID + 521 + + + CF$UID + 522 + + + CF$UID + 523 + + + CF$UID + 524 + + + CF$UID + 525 + + + CF$UID + 526 + + + CF$UID + 527 + + + CF$UID + 528 + + + CF$UID + 529 + + + NS.objects + + + CF$UID + 530 + + + CF$UID + 46 + + + CF$UID + 46 + + + CF$UID + 46 + + + CF$UID + 532 + + + CF$UID + 515 + + + CF$UID + 108 + + + CF$UID + 46 + + + CF$UID + 537 + + + CF$UID + 23 + + + + SourceCodeEditor.selection + SourceCodeEditor.showMinimap + SourceCodeEditor.showCodeCoverage + SourceCodeEditor.showInvisibles + SourceCodeEditor.layoutExtensions + SourceCodeEditor.scrollState.offset + SourceCodeEditor.scrollState.line + SourceCodeEditor.showAuthors + SourceCodeEditor.codeFolding + SourceCodeEditor.wrapLines + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 531 + + + + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 108 + + + CF$UID + 108 + + + CF$UID + 108 + + + CF$UID + 108 + + + + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 533 + + + NS.objects + + + CF$UID + 534 + + + + DeltaEditorLayoutExtension + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 535 + + + CF$UID + 512 + + + NS.objects + + + CF$UID + 536 + + + CF$UID + 47 + + + + documentLength + 1357 + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 517 + + + CF$UID + 538 + + + NS.objects + + + CF$UID + 47 + + + CF$UID + 536 + + + + documentLength + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 540 + + + CF$UID + 541 + + + CF$UID + 542 + + + CF$UID + 543 + + + CF$UID + 544 + + + CF$UID + 545 + + + CF$UID + 546 + + + CF$UID + 547 + + + CF$UID + 548 + + + CF$UID + 549 + + + NS.objects + + + CF$UID + 550 + + + CF$UID + 46 + + + CF$UID + 46 + + + CF$UID + 46 + + + CF$UID + 552 + + + CF$UID + 515 + + + CF$UID + 108 + + + CF$UID + 46 + + + CF$UID + 557 + + + CF$UID + 23 + + + + SourceCodeEditor.selection + SourceCodeEditor.showMinimap + SourceCodeEditor.showCodeCoverage + SourceCodeEditor.showInvisibles + SourceCodeEditor.layoutExtensions + SourceCodeEditor.scrollState.offset + SourceCodeEditor.scrollState.line + SourceCodeEditor.showAuthors + SourceCodeEditor.codeFolding + SourceCodeEditor.wrapLines + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 551 + + + + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 108 + + + CF$UID + 108 + + + CF$UID + 108 + + + CF$UID + 108 + + + + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 553 + + + NS.objects + + + CF$UID + 554 + + + + DeltaEditorLayoutExtension + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 555 + + + CF$UID + 512 + + + NS.objects + + + CF$UID + 556 + + + CF$UID + 47 + + + + documentLength + 1257 + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 517 + + + CF$UID + 558 + + + NS.objects + + + CF$UID + 47 + + + CF$UID + 556 + + + + documentLength + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 560 + + + CF$UID + 561 + + + CF$UID + 562 + + + CF$UID + 563 + + + CF$UID + 564 + + + CF$UID + 565 + + + CF$UID + 566 + + + CF$UID + 567 + + + CF$UID + 568 + + + CF$UID + 569 + + + NS.objects + + + CF$UID + 570 + + + CF$UID + 46 + + + CF$UID + 46 + + + CF$UID + 46 + + + CF$UID + 572 + + + CF$UID + 515 + + + CF$UID + 108 + + + CF$UID + 46 + + + CF$UID + 577 + + + CF$UID + 23 + + + + SourceCodeEditor.selection + SourceCodeEditor.showMinimap + SourceCodeEditor.showCodeCoverage + SourceCodeEditor.showInvisibles + SourceCodeEditor.layoutExtensions + SourceCodeEditor.scrollState.offset + SourceCodeEditor.scrollState.line + SourceCodeEditor.showAuthors + SourceCodeEditor.codeFolding + SourceCodeEditor.wrapLines + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 571 + + + + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 108 + + + CF$UID + 108 + + + CF$UID + 108 + + + CF$UID + 108 + + + + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 573 + + + NS.objects + + + CF$UID + 574 + + + + DeltaEditorLayoutExtension + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 512 + + + CF$UID + 575 + + + NS.objects + + + CF$UID + 47 + + + CF$UID + 576 + + + + documentLength + 2300 + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 517 + + + CF$UID + 578 + + + NS.objects + + + CF$UID + 47 + + + CF$UID + 576 + + + + documentLength + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 580 + + + CF$UID + 581 + + + CF$UID + 582 + + + CF$UID + 583 + + + CF$UID + 584 + + + CF$UID + 585 + + + CF$UID + 586 + + + CF$UID + 587 + + + CF$UID + 588 + + + CF$UID + 589 + + + NS.objects + + + CF$UID + 590 + + + CF$UID + 46 + + + CF$UID + 46 + + + CF$UID + 46 + + + CF$UID + 594 + + + CF$UID + 599 + + + CF$UID + 108 + + + CF$UID + 46 + + + CF$UID + 600 + + + CF$UID + 23 + + + + SourceCodeEditor.selection + SourceCodeEditor.showMinimap + SourceCodeEditor.showCodeCoverage + SourceCodeEditor.showInvisibles + SourceCodeEditor.layoutExtensions + SourceCodeEditor.scrollState.offset + SourceCodeEditor.scrollState.line + SourceCodeEditor.showAuthors + SourceCodeEditor.codeFolding + SourceCodeEditor.wrapLines + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 591 + + + + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 592 + + + CF$UID + 593 + + + CF$UID + 592 + + + CF$UID + 593 + + + + 17 + 8 + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 595 + + + NS.objects + + + CF$UID + 596 + + + + DeltaEditorLayoutExtension + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 512 + + + CF$UID + 597 + + + NS.objects + + + CF$UID + 47 + + + CF$UID + 598 + + + + documentLength + 411 + -1 + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 517 + + + CF$UID + 601 + + + NS.objects + + + CF$UID + 47 + + + CF$UID + 598 + + + + documentLength + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 603 + + + CF$UID + 604 + + + CF$UID + 605 + + + CF$UID + 606 + + + CF$UID + 607 + + + CF$UID + 608 + + + CF$UID + 609 + + + CF$UID + 610 + + + CF$UID + 611 + + + CF$UID + 612 + + + NS.objects + + + CF$UID + 613 + + + CF$UID + 46 + + + CF$UID + 46 + + + CF$UID + 46 + + + CF$UID + 615 + + + CF$UID + 599 + + + CF$UID + 108 + + + CF$UID + 46 + + + CF$UID + 620 + + + CF$UID + 23 + + + + SourceCodeEditor.selection + SourceCodeEditor.showMinimap + SourceCodeEditor.showCodeCoverage + SourceCodeEditor.showInvisibles + SourceCodeEditor.layoutExtensions + SourceCodeEditor.scrollState.offset + SourceCodeEditor.scrollState.line + SourceCodeEditor.showAuthors + SourceCodeEditor.codeFolding + SourceCodeEditor.wrapLines + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 614 + + + + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 592 + + + CF$UID + 593 + + + CF$UID + 592 + + + CF$UID + 593 + + + + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 616 + + + NS.objects + + + CF$UID + 617 + + + + DeltaEditorLayoutExtension + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 512 + + + CF$UID + 618 + + + NS.objects + + + CF$UID + 619 + + + CF$UID + 598 + + + + documentLength + + $class + + CF$UID + 48 + + NS.objects + + + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 517 + + + CF$UID + 621 + + + NS.objects + + + CF$UID + 619 + + + CF$UID + 598 + + + + documentLength + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 623 + + + CF$UID + 624 + + + CF$UID + 625 + + + CF$UID + 626 + + + CF$UID + 627 + + + CF$UID + 628 + + + CF$UID + 629 + + + CF$UID + 630 + + + CF$UID + 631 + + + CF$UID + 632 + + + NS.objects + + + CF$UID + 633 + + + CF$UID + 46 + + + CF$UID + 46 + + + CF$UID + 46 + + + CF$UID + 636 + + + CF$UID + 599 + + + CF$UID + 108 + + + CF$UID + 46 + + + CF$UID + 641 + + + CF$UID + 23 + + + + SourceCodeEditor.selection + SourceCodeEditor.showMinimap + SourceCodeEditor.showCodeCoverage + SourceCodeEditor.showInvisibles + SourceCodeEditor.layoutExtensions + SourceCodeEditor.scrollState.offset + SourceCodeEditor.scrollState.line + SourceCodeEditor.showAuthors + SourceCodeEditor.codeFolding + SourceCodeEditor.wrapLines + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 634 + + + + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 635 + + + CF$UID + 212 + + + CF$UID + 635 + + + CF$UID + 212 + + + + 20 + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 637 + + + NS.objects + + + CF$UID + 638 + + + + DeltaEditorLayoutExtension + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 639 + + + CF$UID + 512 + + + NS.objects + + + CF$UID + 640 + + + CF$UID + 47 + + + + documentLength + 315 + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 517 + + + CF$UID + 642 + + + NS.objects + + + CF$UID + 47 + + + CF$UID + 640 + + + + documentLength + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 644 + + + CF$UID + 645 + + + CF$UID + 646 + + + CF$UID + 647 + + + CF$UID + 648 + + + CF$UID + 649 + + + CF$UID + 650 + + + CF$UID + 651 + + + CF$UID + 652 + + + CF$UID + 653 + + + NS.objects + + + CF$UID + 654 + + + CF$UID + 46 + + + CF$UID + 46 + + + CF$UID + 46 + + + CF$UID + 656 + + + CF$UID + 599 + + + CF$UID + 108 + + + CF$UID + 46 + + + CF$UID + 660 + + + CF$UID + 23 + + + + SourceCodeEditor.selection + SourceCodeEditor.showMinimap + SourceCodeEditor.showCodeCoverage + SourceCodeEditor.showInvisibles + SourceCodeEditor.layoutExtensions + SourceCodeEditor.scrollState.offset + SourceCodeEditor.scrollState.line + SourceCodeEditor.showAuthors + SourceCodeEditor.codeFolding + SourceCodeEditor.wrapLines + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 655 + + + + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 635 + + + CF$UID + 212 + + + CF$UID + 635 + + + CF$UID + 212 + + + + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 657 + + + NS.objects + + + CF$UID + 658 + + + + DeltaEditorLayoutExtension + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 512 + + + CF$UID + 659 + + + NS.objects + + + CF$UID + 47 + + + CF$UID + 640 + + + + documentLength + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 517 + + + CF$UID + 661 + + + NS.objects + + + CF$UID + 47 + + + CF$UID + 640 + + + + documentLength + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 663 + + + CF$UID + 664 + + + CF$UID + 665 + + + CF$UID + 666 + + + CF$UID + 667 + + + CF$UID + 668 + + + CF$UID + 669 + + + CF$UID + 670 + + + CF$UID + 671 + + + CF$UID + 672 + + + NS.objects + + + CF$UID + 673 + + + CF$UID + 46 + + + CF$UID + 46 + + + CF$UID + 46 + + + CF$UID + 675 + + + CF$UID + 599 + + + CF$UID + 108 + + + CF$UID + 46 + + + CF$UID + 680 + + + CF$UID + 23 + + + + SourceCodeEditor.selection + SourceCodeEditor.showMinimap + SourceCodeEditor.showCodeCoverage + SourceCodeEditor.showInvisibles + SourceCodeEditor.layoutExtensions + SourceCodeEditor.scrollState.offset + SourceCodeEditor.scrollState.line + SourceCodeEditor.showAuthors + SourceCodeEditor.codeFolding + SourceCodeEditor.wrapLines + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 674 + + + + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 108 + + + CF$UID + 108 + + + CF$UID + 108 + + + CF$UID + 108 + + + + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 676 + + + NS.objects + + + CF$UID + 677 + + + + DeltaEditorLayoutExtension + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 678 + + + CF$UID + 512 + + + NS.objects + + + CF$UID + 679 + + + CF$UID + 47 + + + + documentLength + 501 + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 517 + + + CF$UID + 681 + + + NS.objects + + + CF$UID + 47 + + + CF$UID + 679 + + + + documentLength + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 683 + + + CF$UID + 684 + + + CF$UID + 685 + + + NS.objects + + + CF$UID + 686 + + + CF$UID + 692 + + + CF$UID + 698 + + + + IDERunContextRecentsSchemesKey + IDERunContextRecentsLastUsedRunDestinationBySchemeKey + IDERunContextRecentsRunDestinationsKey + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 687 + + + CF$UID + 688 + + + NS.objects + + + CF$UID + 689 + + + CF$UID + 691 + + + + SwiftCalculation + TransitiveTestApp + + $class + + CF$UID + 690 + + NS.time + 712458628.14721203 + + + $classes + + NSDate + NSObject + + $classname + NSDate + + + $class + + CF$UID + 690 + + NS.time + 712458633.60017395 + + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 693 + + + CF$UID + 694 + + + NS.objects + + + CF$UID + 695 + + + CF$UID + 697 + + + + SwiftCalculation + TransitiveTestApp + + $class + + CF$UID + 696 + + NS.string + 653C930A-ED48-4DE0-8D31-291F76663C5F_iphonesimulator_arm64 + + + $classes + + NSMutableString + NSString + NSObject + + $classname + NSMutableString + + + $class + + CF$UID + 696 + + NS.string + dvtdevice-DVTiPhonePlaceholder-iphoneos:placeholder_iphoneos + + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 699 + + + CF$UID + 700 + + + NS.objects + + + CF$UID + 701 + + + CF$UID + 702 + + + + 653C930A-ED48-4DE0-8D31-291F76663C5F_iphonesimulator_arm64 + dvtdevice-DVTiPhonePlaceholder-iphoneos:placeholder_iphoneos + + $class + + CF$UID + 690 + + NS.time + 712458633.60023296 + + + $class + + CF$UID + 690 + + NS.time + 712458858.83376098 + + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 704 + + + NS.objects + + + CF$UID + 705 + + + + IDENameString + TransitiveTestApp + + $class + + CF$UID + 56 + + NS.keys + + + CF$UID + 707 + + + CF$UID + 708 + + + CF$UID + 709 + + + CF$UID + 710 + + + CF$UID + 711 + + + CF$UID + 712 + + + CF$UID + 713 + + + CF$UID + 714 + + + CF$UID + 715 + + + NS.objects + + + CF$UID + 23 + + + CF$UID + 716 + + + CF$UID + 46 + + + CF$UID + 716 + + + CF$UID + 717 + + + CF$UID + 718 + + + CF$UID + 719 + + + CF$UID + 720 + + + CF$UID + 46 + + + + isEligible + targetDevicePlatform + targetDeviceIsWireless + targetSDKVariant + targetDeviceLocation + targetArchitecture + targetSDK + targetDeviceModelCode + targetDeviceIsConcrete + iphoneos + dvtdevice-DVTiPhonePlaceholder-iphoneos:placeholder + undefined_arch + iphoneos16.4 + GenericiOS + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 722 + + + CF$UID + 723 + + + CF$UID + 724 + + + CF$UID + 725 + + + NS.objects + + + CF$UID + 726 + + + CF$UID + 727 + + + CF$UID + 728 + + + CF$UID + 729 + + + + IDEActivityReportTitle + IDEActivityReportVersion + IDEActivityReportOptions + IDEActivityReportCompletionSummaryStringSegments + Archive + 14E300c + 234 + + $class + + CF$UID + 44 + + NS.objects + + + CF$UID + 730 + + + CF$UID + 736 + + + CF$UID + 740 + + + + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 731 + + + CF$UID + 732 + + + CF$UID + 733 + + + NS.objects + + + CF$UID + 734 + + + CF$UID + 735 + + + CF$UID + 726 + + + + IDEActivityReportStringSegmentPriority + IDEActivityReportStringSegmentBackSeparator + IDEActivityReportStringSegmentStringValue + 2 + + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 731 + + + CF$UID + 732 + + + CF$UID + 733 + + + NS.objects + + + CF$UID + 737 + + + CF$UID + 738 + + + CF$UID + 739 + + + + 1 + │ + + $class + + CF$UID + 308 + + NS.data + + YnBsaXN0MDDUAQIDBAUGBwpYJHZlcnNpb25ZJGFyY2hpdmVyVCR0 + b3BYJG9iamVjdHMSAAGGoF8QD05TS2V5ZWRBcmNoaXZlctEICVRy + b290gAGvEBkLDBMUHB0pKjA6OzwjPUFJSktMTVNXWFxfVSRudWxs + 0w0ODxARElhOU1N0cmluZ1YkY2xhc3NcTlNBdHRyaWJ1dGVzgAKA + GIADWVN1Y2NlZWRlZNMVFg4XGRtXTlMua2V5c1pOUy5vYmplY3Rz + oRiABKEagAWAE1ZOU0ZvbnTWHh8gISIOIyQlJicoVk5TU2l6ZVhO + U2ZGbGFnc1xOU0Rlc2NyaXB0b3JaTlNIYXNXaWR0aFZOU05hbWUj + QCYAAAAAAAARiBCABwiABoAXXxAWLkFwcGxlU3lzdGVtVUlGb250 + Qm9sZNMOKywtLi9fEBdOU0ZvbnREZXNjcmlwdG9yT3B0aW9uc18Q + Gk5TRm9udERlc2NyaXB0b3JBdHRyaWJ1dGVzgBYSgAGABoAI0xUW + DjE1G6MyMzSACYAKgAujNjc4gAyADYAVgBNfEBNOU0ZvbnRTaXpl + QXR0cmlidXRlXxAgTlNDVEZvbnRGZWF0dXJlU2V0dGluZ3NBdHRy + aWJ1dGVfEBhOU0NURm9udFVJVXNhZ2VBdHRyaWJ1dGXSFg4+QKE/ + gA6AFNMVFg5CRRuiQ0SAD4AQokZHgBGAEoATXxAbQ1RGZWF0dXJl + U2VsZWN0b3JJZGVudGlmaWVyXxAXQ1RGZWF0dXJlVHlwZUlkZW50 + aWZpZXIQABAG0k5PUFFaJGNsYXNzbmFtZVgkY2xhc3Nlc1xOU0Rp + Y3Rpb25hcnmiUFJYTlNPYmplY3TSTk9UVV5OU011dGFibGVBcnJh + eaNUVlJXTlNBcnJheV8QD0NURm9udEJvbGRVc2FnZdJOT1laXxAQ + TlNGb250RGVzY3JpcHRvcqJbUl8QEE5TRm9udERlc2NyaXB0b3LS + Tk9dXlZOU0ZvbnSiXVLSTk9gYV8QEk5TQXR0cmlidXRlZFN0cmlu + Z6JiUl8QEk5TQXR0cmlidXRlZFN0cmluZwAIABEAGgAkACkAMgA3 + AEkATABRAFMAbwB1AHwAhQCMAJkAmwCdAJ8AqQCwALgAwwDFAMcA + yQDLAM0A1ADhAOgA8QD+AQkBEAEZARwBHgEfASEBIwE8AUMBXQF6 + AXwBgQGDAYoBjgGQAZIBlAGYAZoBnAGeAaABtgHZAfQB+QH7Af0B + /wIGAgkCCwINAhACEgIUAhYCNAJOAlACUgJXAmICawJ4AnsChAKJ + ApgCnAKkArYCuwLOAtEC5ALpAvAC8wL4Aw0DEAAAAAAAAAIBAAAA + AAAAAGMAAAAAAAAAAAAAAAAAAAMl + + + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 731 + + + CF$UID + 741 + + + CF$UID + 742 + + + CF$UID + 733 + + + CF$UID + 743 + + + CF$UID + 744 + + + NS.objects + + + CF$UID + 745 + + + CF$UID + 212 + + + CF$UID + 746 + + + CF$UID + 747 + + + CF$UID + 212 + + + CF$UID + 212 + + + + IDEActivityReportStringSegmentType + IDEActivityReportStringSegmentDate + IDEActivityReportStringSegmentDateStyle + IDEActivityReportStringSegmentTimeStyle + 3 + + $class + + CF$UID + 690 + + NS.time + 712459735.14085996 + + Today at 9:28 PM + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 2 + + + + + $class + + CF$UID + 49 + + NS.keys + + + CF$UID + 2 + + + NS.objects + + + CF$UID + 750 + + + + + $class + + CF$UID + 44 + + NS.objects + + + CF$UID + 2 + + + + + $class + + CF$UID + 44 + + NS.objects + + + + $class + + CF$UID + 48 + + NS.objects + + + CF$UID + 278 + + + CF$UID + 265 + + + CF$UID + 325 + + + CF$UID + 327 + + + CF$UID + 341 + + + CF$UID + 337 + + + CF$UID + 488 + + + CF$UID + 250 + + + CF$UID + 753 + + + CF$UID + 755 + + + + + $class + + CF$UID + 251 + + NS.base + + CF$UID + 0 + + NS.relative + + CF$UID + 754 + + + file:///Users/jaredcarlson/Projects/Veracode/transitive-project/TransitiveTestApp/TransitiveTestApp/ViewController.swift + + $class + + CF$UID + 251 + + NS.base + + CF$UID + 0 + + NS.relative + + CF$UID + 422 + + + + $top + + State + + CF$UID + 1 + + + $version + 100000 + + diff --git a/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp.xcodeproj/xcshareddata/xcschemes/TransitiveTestApp.xcscheme b/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp.xcodeproj/xcshareddata/xcschemes/TransitiveTestApp.xcscheme new file mode 100644 index 0000000..06160b4 --- /dev/null +++ b/TestAssets/transitive-project-and-components/TransitiveTestApp/TransitiveTestApp.xcodeproj/xcshareddata/xcschemes/TransitiveTestApp.xcscheme @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TestAssets/transitive-project-test2/StaticSpace/StaticSpace.xcodeproj/project.pbxproj b/TestAssets/transitive-project-test2/StaticSpace/StaticSpace.xcodeproj/project.pbxproj new file mode 100644 index 0000000..26db988 --- /dev/null +++ b/TestAssets/transitive-project-test2/StaticSpace/StaticSpace.xcodeproj/project.pbxproj @@ -0,0 +1,650 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 56; + objects = { + +/* Begin PBXBuildFile section */ + 04E217EA2A8D584B00BC5FD9 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04E217E92A8D584B00BC5FD9 /* AppDelegate.swift */; }; + 04E217EC2A8D584B00BC5FD9 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04E217EB2A8D584B00BC5FD9 /* SceneDelegate.swift */; }; + 04E217EE2A8D584B00BC5FD9 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04E217ED2A8D584B00BC5FD9 /* ViewController.swift */; }; + 04E217F12A8D584B00BC5FD9 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 04E217EF2A8D584B00BC5FD9 /* Main.storyboard */; }; + 04E217F32A8D584C00BC5FD9 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 04E217F22A8D584C00BC5FD9 /* Assets.xcassets */; }; + 04E217F62A8D584C00BC5FD9 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 04E217F42A8D584C00BC5FD9 /* LaunchScreen.storyboard */; }; + 04E218012A8D584C00BC5FD9 /* StaticSpaceTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04E218002A8D584C00BC5FD9 /* StaticSpaceTests.swift */; }; + 04E2180B2A8D584C00BC5FD9 /* StaticSpaceUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04E2180A2A8D584C00BC5FD9 /* StaticSpaceUITests.swift */; }; + 04E2180D2A8D584C00BC5FD9 /* StaticSpaceUITestsLaunchTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04E2180C2A8D584C00BC5FD9 /* StaticSpaceUITestsLaunchTests.swift */; }; + 04E218252A8D590C00BC5FD9 /* libUtils.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 04E218232A8D589B00BC5FD9 /* libUtils.a */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 04E217FD2A8D584C00BC5FD9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 04E217DE2A8D584B00BC5FD9 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 04E217E52A8D584B00BC5FD9; + remoteInfo = StaticSpace; + }; + 04E218072A8D584C00BC5FD9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 04E217DE2A8D584B00BC5FD9 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 04E217E52A8D584B00BC5FD9; + remoteInfo = StaticSpace; + }; + 04E218222A8D589B00BC5FD9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 04E218192A8D588B00BC5FD9 /* Utils.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 04430CA72A8D56AD00C7EECB; + remoteInfo = Utils; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 04E217E62A8D584B00BC5FD9 /* StaticSpace.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = StaticSpace.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 04E217E92A8D584B00BC5FD9 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 04E217EB2A8D584B00BC5FD9 /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = ""; }; + 04E217ED2A8D584B00BC5FD9 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; + 04E217F02A8D584B00BC5FD9 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + 04E217F22A8D584C00BC5FD9 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + 04E217F52A8D584C00BC5FD9 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + 04E217F72A8D584C00BC5FD9 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 04E217FC2A8D584C00BC5FD9 /* StaticSpaceTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = StaticSpaceTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 04E218002A8D584C00BC5FD9 /* StaticSpaceTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StaticSpaceTests.swift; sourceTree = ""; }; + 04E218062A8D584C00BC5FD9 /* StaticSpaceUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = StaticSpaceUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 04E2180A2A8D584C00BC5FD9 /* StaticSpaceUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StaticSpaceUITests.swift; sourceTree = ""; }; + 04E2180C2A8D584C00BC5FD9 /* StaticSpaceUITestsLaunchTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StaticSpaceUITestsLaunchTests.swift; sourceTree = ""; }; + 04E218192A8D588B00BC5FD9 /* Utils.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = Utils.xcodeproj; path = ../Utils/Utils.xcodeproj; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 04E217E32A8D584B00BC5FD9 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 04E218252A8D590C00BC5FD9 /* libUtils.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04E217F92A8D584C00BC5FD9 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04E218032A8D584C00BC5FD9 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 04E217DD2A8D584B00BC5FD9 = { + isa = PBXGroup; + children = ( + 04E218192A8D588B00BC5FD9 /* Utils.xcodeproj */, + 04E217E82A8D584B00BC5FD9 /* StaticSpace */, + 04E217FF2A8D584C00BC5FD9 /* StaticSpaceTests */, + 04E218092A8D584C00BC5FD9 /* StaticSpaceUITests */, + 04E217E72A8D584B00BC5FD9 /* Products */, + 04E218242A8D590C00BC5FD9 /* Frameworks */, + ); + sourceTree = ""; + }; + 04E217E72A8D584B00BC5FD9 /* Products */ = { + isa = PBXGroup; + children = ( + 04E217E62A8D584B00BC5FD9 /* StaticSpace.app */, + 04E217FC2A8D584C00BC5FD9 /* StaticSpaceTests.xctest */, + 04E218062A8D584C00BC5FD9 /* StaticSpaceUITests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 04E217E82A8D584B00BC5FD9 /* StaticSpace */ = { + isa = PBXGroup; + children = ( + 04E217E92A8D584B00BC5FD9 /* AppDelegate.swift */, + 04E217EB2A8D584B00BC5FD9 /* SceneDelegate.swift */, + 04E217ED2A8D584B00BC5FD9 /* ViewController.swift */, + 04E217EF2A8D584B00BC5FD9 /* Main.storyboard */, + 04E217F22A8D584C00BC5FD9 /* Assets.xcassets */, + 04E217F42A8D584C00BC5FD9 /* LaunchScreen.storyboard */, + 04E217F72A8D584C00BC5FD9 /* Info.plist */, + ); + path = StaticSpace; + sourceTree = ""; + }; + 04E217FF2A8D584C00BC5FD9 /* StaticSpaceTests */ = { + isa = PBXGroup; + children = ( + 04E218002A8D584C00BC5FD9 /* StaticSpaceTests.swift */, + ); + path = StaticSpaceTests; + sourceTree = ""; + }; + 04E218092A8D584C00BC5FD9 /* StaticSpaceUITests */ = { + isa = PBXGroup; + children = ( + 04E2180A2A8D584C00BC5FD9 /* StaticSpaceUITests.swift */, + 04E2180C2A8D584C00BC5FD9 /* StaticSpaceUITestsLaunchTests.swift */, + ); + path = StaticSpaceUITests; + sourceTree = ""; + }; + 04E2181F2A8D589B00BC5FD9 /* Products */ = { + isa = PBXGroup; + children = ( + 04E218232A8D589B00BC5FD9 /* libUtils.a */, + ); + name = Products; + sourceTree = ""; + }; + 04E218242A8D590C00BC5FD9 /* Frameworks */ = { + isa = PBXGroup; + children = ( + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 04E217E52A8D584B00BC5FD9 /* StaticSpace */ = { + isa = PBXNativeTarget; + buildConfigurationList = 04E218102A8D584C00BC5FD9 /* Build configuration list for PBXNativeTarget "StaticSpace" */; + buildPhases = ( + 04E217E22A8D584B00BC5FD9 /* Sources */, + 04E217E32A8D584B00BC5FD9 /* Frameworks */, + 04E217E42A8D584B00BC5FD9 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = StaticSpace; + productName = StaticSpace; + productReference = 04E217E62A8D584B00BC5FD9 /* StaticSpace.app */; + productType = "com.apple.product-type.application"; + }; + 04E217FB2A8D584C00BC5FD9 /* StaticSpaceTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 04E218132A8D584C00BC5FD9 /* Build configuration list for PBXNativeTarget "StaticSpaceTests" */; + buildPhases = ( + 04E217F82A8D584C00BC5FD9 /* Sources */, + 04E217F92A8D584C00BC5FD9 /* Frameworks */, + 04E217FA2A8D584C00BC5FD9 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 04E217FE2A8D584C00BC5FD9 /* PBXTargetDependency */, + ); + name = StaticSpaceTests; + productName = StaticSpaceTests; + productReference = 04E217FC2A8D584C00BC5FD9 /* StaticSpaceTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + 04E218052A8D584C00BC5FD9 /* StaticSpaceUITests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 04E218162A8D584C00BC5FD9 /* Build configuration list for PBXNativeTarget "StaticSpaceUITests" */; + buildPhases = ( + 04E218022A8D584C00BC5FD9 /* Sources */, + 04E218032A8D584C00BC5FD9 /* Frameworks */, + 04E218042A8D584C00BC5FD9 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 04E218082A8D584C00BC5FD9 /* PBXTargetDependency */, + ); + name = StaticSpaceUITests; + productName = StaticSpaceUITests; + productReference = 04E218062A8D584C00BC5FD9 /* StaticSpaceUITests.xctest */; + productType = "com.apple.product-type.bundle.ui-testing"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 04E217DE2A8D584B00BC5FD9 /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = 1; + LastSwiftUpdateCheck = 1430; + LastUpgradeCheck = 1430; + TargetAttributes = { + 04E217E52A8D584B00BC5FD9 = { + CreatedOnToolsVersion = 14.3.1; + }; + 04E217FB2A8D584C00BC5FD9 = { + CreatedOnToolsVersion = 14.3.1; + TestTargetID = 04E217E52A8D584B00BC5FD9; + }; + 04E218052A8D584C00BC5FD9 = { + CreatedOnToolsVersion = 14.3.1; + TestTargetID = 04E217E52A8D584B00BC5FD9; + }; + }; + }; + buildConfigurationList = 04E217E12A8D584B00BC5FD9 /* Build configuration list for PBXProject "StaticSpace" */; + compatibilityVersion = "Xcode 14.0"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 04E217DD2A8D584B00BC5FD9; + productRefGroup = 04E217E72A8D584B00BC5FD9 /* Products */; + projectDirPath = ""; + projectReferences = ( + { + ProductGroup = 04E2181F2A8D589B00BC5FD9 /* Products */; + ProjectRef = 04E218192A8D588B00BC5FD9 /* Utils.xcodeproj */; + }, + ); + projectRoot = ""; + targets = ( + 04E217E52A8D584B00BC5FD9 /* StaticSpace */, + 04E217FB2A8D584C00BC5FD9 /* StaticSpaceTests */, + 04E218052A8D584C00BC5FD9 /* StaticSpaceUITests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXReferenceProxy section */ + 04E218232A8D589B00BC5FD9 /* libUtils.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libUtils.a; + remoteRef = 04E218222A8D589B00BC5FD9 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; +/* End PBXReferenceProxy section */ + +/* Begin PBXResourcesBuildPhase section */ + 04E217E42A8D584B00BC5FD9 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 04E217F62A8D584C00BC5FD9 /* LaunchScreen.storyboard in Resources */, + 04E217F32A8D584C00BC5FD9 /* Assets.xcassets in Resources */, + 04E217F12A8D584B00BC5FD9 /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04E217FA2A8D584C00BC5FD9 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04E218042A8D584C00BC5FD9 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 04E217E22A8D584B00BC5FD9 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 04E217EE2A8D584B00BC5FD9 /* ViewController.swift in Sources */, + 04E217EA2A8D584B00BC5FD9 /* AppDelegate.swift in Sources */, + 04E217EC2A8D584B00BC5FD9 /* SceneDelegate.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04E217F82A8D584C00BC5FD9 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 04E218012A8D584C00BC5FD9 /* StaticSpaceTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04E218022A8D584C00BC5FD9 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 04E2180B2A8D584C00BC5FD9 /* StaticSpaceUITests.swift in Sources */, + 04E2180D2A8D584C00BC5FD9 /* StaticSpaceUITestsLaunchTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 04E217FE2A8D584C00BC5FD9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 04E217E52A8D584B00BC5FD9 /* StaticSpace */; + targetProxy = 04E217FD2A8D584C00BC5FD9 /* PBXContainerItemProxy */; + }; + 04E218082A8D584C00BC5FD9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 04E217E52A8D584B00BC5FD9 /* StaticSpace */; + targetProxy = 04E218072A8D584C00BC5FD9 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 04E217EF2A8D584B00BC5FD9 /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 04E217F02A8D584B00BC5FD9 /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; + 04E217F42A8D584C00BC5FD9 /* LaunchScreen.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 04E217F52A8D584C00BC5FD9 /* Base */, + ); + name = LaunchScreen.storyboard; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 04E2180E2A8D584C00BC5FD9 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + 04E2180F2A8D584C00BC5FD9 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 04E218112A8D584C00BC5FD9 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = StaticSpace/Info.plist; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen; + INFOPLIST_KEY_UIMainStoryboardFile = Main; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.StaticSpace; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 04E218122A8D584C00BC5FD9 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = StaticSpace/Info.plist; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen; + INFOPLIST_KEY_UIMainStoryboardFile = Main; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.StaticSpace; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; + 04E218142A8D584C00BC5FD9 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.StaticSpaceTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/StaticSpace.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/StaticSpace"; + }; + name = Debug; + }; + 04E218152A8D584C00BC5FD9 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.StaticSpaceTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/StaticSpace.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/StaticSpace"; + }; + name = Release; + }; + 04E218172A8D584C00BC5FD9 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.StaticSpaceUITests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_TARGET_NAME = StaticSpace; + }; + name = Debug; + }; + 04E218182A8D584C00BC5FD9 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.StaticSpaceUITests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_TARGET_NAME = StaticSpace; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 04E217E12A8D584B00BC5FD9 /* Build configuration list for PBXProject "StaticSpace" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04E2180E2A8D584C00BC5FD9 /* Debug */, + 04E2180F2A8D584C00BC5FD9 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 04E218102A8D584C00BC5FD9 /* Build configuration list for PBXNativeTarget "StaticSpace" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04E218112A8D584C00BC5FD9 /* Debug */, + 04E218122A8D584C00BC5FD9 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 04E218132A8D584C00BC5FD9 /* Build configuration list for PBXNativeTarget "StaticSpaceTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04E218142A8D584C00BC5FD9 /* Debug */, + 04E218152A8D584C00BC5FD9 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 04E218162A8D584C00BC5FD9 /* Build configuration list for PBXNativeTarget "StaticSpaceUITests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04E218172A8D584C00BC5FD9 /* Debug */, + 04E218182A8D584C00BC5FD9 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 04E217DE2A8D584B00BC5FD9 /* Project object */; +} diff --git a/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/AppDelegate.swift b/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/AppDelegate.swift new file mode 100644 index 0000000..b504c53 --- /dev/null +++ b/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/AppDelegate.swift @@ -0,0 +1,36 @@ +// +// AppDelegate.swift +// StaticSpace +// +// Created by Jared Carlson on 8/16/23. +// + +import UIKit + +@main +class AppDelegate: UIResponder, UIApplicationDelegate { + + + + func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { + // Override point for customization after application launch. + return true + } + + // MARK: UISceneSession Lifecycle + + func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration { + // Called when a new scene session is being created. + // Use this method to select a configuration to create the new scene with. + return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role) + } + + func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set) { + // Called when the user discards a scene session. + // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions. + // Use this method to release any resources that were specific to the discarded scenes, as they will not return. + } + + +} + diff --git a/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Assets.xcassets/AccentColor.colorset/Contents.json b/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Assets.xcassets/AccentColor.colorset/Contents.json new file mode 100644 index 0000000..eb87897 --- /dev/null +++ b/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Assets.xcassets/AccentColor.colorset/Contents.json @@ -0,0 +1,11 @@ +{ + "colors" : [ + { + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Assets.xcassets/AppIcon.appiconset/Contents.json b/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..13613e3 --- /dev/null +++ b/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,13 @@ +{ + "images" : [ + { + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Assets.xcassets/Contents.json b/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Assets.xcassets/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Base.lproj/LaunchScreen.storyboard b/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 0000000..865e932 --- /dev/null +++ b/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Base.lproj/Main.storyboard b/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Base.lproj/Main.storyboard new file mode 100644 index 0000000..25a7638 --- /dev/null +++ b/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Base.lproj/Main.storyboard @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Info.plist b/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Info.plist new file mode 100644 index 0000000..dd3c9af --- /dev/null +++ b/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Info.plist @@ -0,0 +1,25 @@ + + + + + UIApplicationSceneManifest + + UIApplicationSupportsMultipleScenes + + UISceneConfigurations + + UIWindowSceneSessionRoleApplication + + + UISceneConfigurationName + Default Configuration + UISceneDelegateClassName + $(PRODUCT_MODULE_NAME).SceneDelegate + UISceneStoryboardFile + Main + + + + + + diff --git a/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/SceneDelegate.swift b/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/SceneDelegate.swift new file mode 100644 index 0000000..54d9f54 --- /dev/null +++ b/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/SceneDelegate.swift @@ -0,0 +1,52 @@ +// +// SceneDelegate.swift +// StaticSpace +// +// Created by Jared Carlson on 8/16/23. +// + +import UIKit + +class SceneDelegate: UIResponder, UIWindowSceneDelegate { + + var window: UIWindow? + + + func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) { + // Use this method to optionally configure and attach the UIWindow `window` to the provided UIWindowScene `scene`. + // If using a storyboard, the `window` property will automatically be initialized and attached to the scene. + // This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead). + guard let _ = (scene as? UIWindowScene) else { return } + } + + func sceneDidDisconnect(_ scene: UIScene) { + // Called as the scene is being released by the system. + // This occurs shortly after the scene enters the background, or when its session is discarded. + // Release any resources associated with this scene that can be re-created the next time the scene connects. + // The scene may re-connect later, as its session was not necessarily discarded (see `application:didDiscardSceneSessions` instead). + } + + func sceneDidBecomeActive(_ scene: UIScene) { + // Called when the scene has moved from an inactive state to an active state. + // Use this method to restart any tasks that were paused (or not yet started) when the scene was inactive. + } + + func sceneWillResignActive(_ scene: UIScene) { + // Called when the scene will move from an active state to an inactive state. + // This may occur due to temporary interruptions (ex. an incoming phone call). + } + + func sceneWillEnterForeground(_ scene: UIScene) { + // Called as the scene transitions from the background to the foreground. + // Use this method to undo the changes made on entering the background. + } + + func sceneDidEnterBackground(_ scene: UIScene) { + // Called as the scene transitions from the foreground to the background. + // Use this method to save data, release shared resources, and store enough scene-specific state information + // to restore the scene back to its current state. + } + + +} + diff --git a/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/ViewController.swift b/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/ViewController.swift new file mode 100644 index 0000000..b8177b6 --- /dev/null +++ b/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/ViewController.swift @@ -0,0 +1,25 @@ +// +// ViewController.swift +// StaticSpace +// +// Created by Jared Carlson on 8/16/23. +// + +import UIKit +import Utils + +class ViewController: UIViewController { + + override func viewDidLoad() { + super.viewDidLoad() + // Do any additional setup after loading the view. + + let a = 4 + let b = 3 + let sum = addInts(lhs: a, rhs: b) + print("The sum is \(sum)") + } + + +} + diff --git a/TestAssets/transitive-project-test2/StaticSpace/StaticSpaceTests/StaticSpaceTests.swift b/TestAssets/transitive-project-test2/StaticSpace/StaticSpaceTests/StaticSpaceTests.swift new file mode 100644 index 0000000..273dd21 --- /dev/null +++ b/TestAssets/transitive-project-test2/StaticSpace/StaticSpaceTests/StaticSpaceTests.swift @@ -0,0 +1,36 @@ +// +// StaticSpaceTests.swift +// StaticSpaceTests +// +// Created by Jared Carlson on 8/16/23. +// + +import XCTest +@testable import StaticSpace + +final class StaticSpaceTests: XCTestCase { + + override func setUpWithError() throws { + // Put setup code here. This method is called before the invocation of each test method in the class. + } + + override func tearDownWithError() throws { + // Put teardown code here. This method is called after the invocation of each test method in the class. + } + + func testExample() throws { + // This is an example of a functional test case. + // Use XCTAssert and related functions to verify your tests produce the correct results. + // Any test you write for XCTest can be annotated as throws and async. + // Mark your test throws to produce an unexpected failure when your test encounters an uncaught error. + // Mark your test async to allow awaiting for asynchronous code to complete. Check the results with assertions afterwards. + } + + func testPerformanceExample() throws { + // This is an example of a performance test case. + self.measure { + // Put the code you want to measure the time of here. + } + } + +} diff --git a/TestAssets/transitive-project-test2/StaticSpace/StaticSpaceUITests/StaticSpaceUITests.swift b/TestAssets/transitive-project-test2/StaticSpace/StaticSpaceUITests/StaticSpaceUITests.swift new file mode 100644 index 0000000..66124e2 --- /dev/null +++ b/TestAssets/transitive-project-test2/StaticSpace/StaticSpaceUITests/StaticSpaceUITests.swift @@ -0,0 +1,41 @@ +// +// StaticSpaceUITests.swift +// StaticSpaceUITests +// +// Created by Jared Carlson on 8/16/23. +// + +import XCTest + +final class StaticSpaceUITests: XCTestCase { + + override func setUpWithError() throws { + // Put setup code here. This method is called before the invocation of each test method in the class. + + // In UI tests it is usually best to stop immediately when a failure occurs. + continueAfterFailure = false + + // In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this. + } + + override func tearDownWithError() throws { + // Put teardown code here. This method is called after the invocation of each test method in the class. + } + + func testExample() throws { + // UI tests must launch the application that they test. + let app = XCUIApplication() + app.launch() + + // Use XCTAssert and related functions to verify your tests produce the correct results. + } + + func testLaunchPerformance() throws { + if #available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 7.0, *) { + // This measures how long it takes to launch your application. + measure(metrics: [XCTApplicationLaunchMetric()]) { + XCUIApplication().launch() + } + } + } +} diff --git a/TestAssets/transitive-project-test2/StaticSpace/StaticSpaceUITests/StaticSpaceUITestsLaunchTests.swift b/TestAssets/transitive-project-test2/StaticSpace/StaticSpaceUITests/StaticSpaceUITestsLaunchTests.swift new file mode 100644 index 0000000..03de671 --- /dev/null +++ b/TestAssets/transitive-project-test2/StaticSpace/StaticSpaceUITests/StaticSpaceUITestsLaunchTests.swift @@ -0,0 +1,32 @@ +// +// StaticSpaceUITestsLaunchTests.swift +// StaticSpaceUITests +// +// Created by Jared Carlson on 8/16/23. +// + +import XCTest + +final class StaticSpaceUITestsLaunchTests: XCTestCase { + + override class var runsForEachTargetApplicationUIConfiguration: Bool { + true + } + + override func setUpWithError() throws { + continueAfterFailure = false + } + + func testLaunch() throws { + let app = XCUIApplication() + app.launch() + + // Insert steps here to perform after app launch but before taking a screenshot, + // such as logging into a test account or navigating somewhere in the app + + let attachment = XCTAttachment(screenshot: app.screenshot()) + attachment.name = "Launch Screen" + attachment.lifetime = .keepAlways + add(attachment) + } +} diff --git a/TestAssets/transitive-project-test2/StaticTestSpace.xcworkspace/contents.xcworkspacedata b/TestAssets/transitive-project-test2/StaticTestSpace.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..c9f548c --- /dev/null +++ b/TestAssets/transitive-project-test2/StaticTestSpace.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/TestAssets/transitive-project-test2/StaticTestSpace.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/TestAssets/transitive-project-test2/StaticTestSpace.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/TestAssets/transitive-project-test2/StaticTestSpace.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/TestAssets/transitive-project-test2/SwiftMath/.gitignore b/TestAssets/transitive-project-test2/SwiftMath/.gitignore new file mode 100644 index 0000000..3b29812 --- /dev/null +++ b/TestAssets/transitive-project-test2/SwiftMath/.gitignore @@ -0,0 +1,9 @@ +.DS_Store +/.build +/Packages +/*.xcodeproj +xcuserdata/ +DerivedData/ +.swiftpm/config/registries.json +.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata +.netrc diff --git a/TestAssets/transitive-project-test2/SwiftMath/Package.swift b/TestAssets/transitive-project-test2/SwiftMath/Package.swift new file mode 100644 index 0000000..44b3a98 --- /dev/null +++ b/TestAssets/transitive-project-test2/SwiftMath/Package.swift @@ -0,0 +1,23 @@ +// swift-tools-version: 5.8 +// The swift-tools-version declares the minimum version of Swift required to build this package. + +import PackageDescription + +let package = Package( + name: "SwiftMath", + products: [ + // Products define the executables and libraries a package produces, making them visible to other packages. + .library( + name: "SwiftMath", + targets: ["SwiftMath"]), + ], + targets: [ + // Targets are the basic building blocks of a package, defining a module or a test suite. + // Targets can depend on other targets in this package and products from dependencies. + .target( + name: "SwiftMath"), + .testTarget( + name: "SwiftMathTests", + dependencies: ["SwiftMath"]), + ] +) diff --git a/TestAssets/transitive-project-test2/SwiftMath/Sources/SwiftMath/SwiftMath.swift b/TestAssets/transitive-project-test2/SwiftMath/Sources/SwiftMath/SwiftMath.swift new file mode 100644 index 0000000..1d16913 --- /dev/null +++ b/TestAssets/transitive-project-test2/SwiftMath/Sources/SwiftMath/SwiftMath.swift @@ -0,0 +1,26 @@ +// The Swift Programming Language +// https://docs.swift.org/swift-book + +enum OperationError:Error { + case DivideByZero +} + +public func mult(lhs:Int, rhs:Int) -> Int { + return lhs * rhs +} + +public func div(lhs: Int, rhs: Int) throws -> Int { + guard rhs != 0 else { + throw OperationError.DivideByZero + } + + return lhs / rhs +} + +public func add( lhs: Int, rhs: Int) -> Int { + return lhs + rhs +} + +public func sub( lhs: Int, rhs: Int) -> Int { + return lhs - rhs +} diff --git a/TestAssets/transitive-project-test2/SwiftMath/Tests/SwiftMathTests/SwiftMathTests.swift b/TestAssets/transitive-project-test2/SwiftMath/Tests/SwiftMathTests/SwiftMathTests.swift new file mode 100644 index 0000000..0eac419 --- /dev/null +++ b/TestAssets/transitive-project-test2/SwiftMath/Tests/SwiftMathTests/SwiftMathTests.swift @@ -0,0 +1,12 @@ +import XCTest +@testable import SwiftMath + +final class SwiftMathTests: XCTestCase { + func testExample() throws { + // XCTest Documenation + // https://developer.apple.com/documentation/xctest + + // Defining Test Cases and Test Methods + // https://developer.apple.com/documentation/xctest/defining_test_cases_and_test_methods + } +} diff --git a/TestAssets/transitive-project-test2/Utils/Utils.xcodeproj/project.pbxproj b/TestAssets/transitive-project-test2/Utils/Utils.xcodeproj/project.pbxproj new file mode 100644 index 0000000..ecb4c4f --- /dev/null +++ b/TestAssets/transitive-project-test2/Utils/Utils.xcodeproj/project.pbxproj @@ -0,0 +1,324 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 56; + objects = { + +/* Begin PBXBuildFile section */ + 04430CAB2A8D56AD00C7EECB /* Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04430CAA2A8D56AD00C7EECB /* Utils.swift */; }; + 04E218282A8D596900BC5FD9 /* SwiftMath in Frameworks */ = {isa = PBXBuildFile; productRef = 04E218272A8D596900BC5FD9 /* SwiftMath */; }; +/* End PBXBuildFile section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 04430CA52A8D56AD00C7EECB /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "include/$(PRODUCT_NAME)"; + dstSubfolderSpec = 16; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 04430CA72A8D56AD00C7EECB /* libUtils.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libUtils.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 04430CAA2A8D56AD00C7EECB /* Utils.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Utils.swift; sourceTree = ""; }; + 04430CB22A8D574C00C7EECB /* SwiftMath */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = SwiftMath; path = ../SwiftMath; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 04430CA42A8D56AD00C7EECB /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 04E218282A8D596900BC5FD9 /* SwiftMath in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 04430C9E2A8D56AD00C7EECB = { + isa = PBXGroup; + children = ( + 04430CB12A8D574C00C7EECB /* Packages */, + 04430CA92A8D56AD00C7EECB /* Utils */, + 04430CA82A8D56AD00C7EECB /* Products */, + 04E218262A8D596900BC5FD9 /* Frameworks */, + ); + sourceTree = ""; + }; + 04430CA82A8D56AD00C7EECB /* Products */ = { + isa = PBXGroup; + children = ( + 04430CA72A8D56AD00C7EECB /* libUtils.a */, + ); + name = Products; + sourceTree = ""; + }; + 04430CA92A8D56AD00C7EECB /* Utils */ = { + isa = PBXGroup; + children = ( + 04430CAA2A8D56AD00C7EECB /* Utils.swift */, + ); + path = Utils; + sourceTree = ""; + }; + 04430CB12A8D574C00C7EECB /* Packages */ = { + isa = PBXGroup; + children = ( + 04430CB22A8D574C00C7EECB /* SwiftMath */, + ); + name = Packages; + sourceTree = ""; + }; + 04E218262A8D596900BC5FD9 /* Frameworks */ = { + isa = PBXGroup; + children = ( + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 04430CA62A8D56AD00C7EECB /* Utils */ = { + isa = PBXNativeTarget; + buildConfigurationList = 04430CAE2A8D56AD00C7EECB /* Build configuration list for PBXNativeTarget "Utils" */; + buildPhases = ( + 04430CA32A8D56AD00C7EECB /* Sources */, + 04430CA42A8D56AD00C7EECB /* Frameworks */, + 04430CA52A8D56AD00C7EECB /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = Utils; + packageProductDependencies = ( + 04E218272A8D596900BC5FD9 /* SwiftMath */, + ); + productName = Utils; + productReference = 04430CA72A8D56AD00C7EECB /* libUtils.a */; + productType = "com.apple.product-type.library.static"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 04430C9F2A8D56AD00C7EECB /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = 1; + LastSwiftUpdateCheck = 1430; + LastUpgradeCheck = 1430; + TargetAttributes = { + 04430CA62A8D56AD00C7EECB = { + CreatedOnToolsVersion = 14.3.1; + }; + }; + }; + buildConfigurationList = 04430CA22A8D56AD00C7EECB /* Build configuration list for PBXProject "Utils" */; + compatibilityVersion = "Xcode 14.0"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 04430C9E2A8D56AD00C7EECB; + productRefGroup = 04430CA82A8D56AD00C7EECB /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 04430CA62A8D56AD00C7EECB /* Utils */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXSourcesBuildPhase section */ + 04430CA32A8D56AD00C7EECB /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 04430CAB2A8D56AD00C7EECB /* Utils.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin XCBuildConfiguration section */ + 04430CAC2A8D56AD00C7EECB /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + 04430CAD2A8D56AD00C7EECB /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 04430CAF2A8D56AD00C7EECB /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + OTHER_LDFLAGS = "-ObjC"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SKIP_INSTALL = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 04430CB02A8D56AD00C7EECB /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + OTHER_LDFLAGS = "-ObjC"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SKIP_INSTALL = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 04430CA22A8D56AD00C7EECB /* Build configuration list for PBXProject "Utils" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04430CAC2A8D56AD00C7EECB /* Debug */, + 04430CAD2A8D56AD00C7EECB /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 04430CAE2A8D56AD00C7EECB /* Build configuration list for PBXNativeTarget "Utils" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04430CAF2A8D56AD00C7EECB /* Debug */, + 04430CB02A8D56AD00C7EECB /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + +/* Begin XCSwiftPackageProductDependency section */ + 04E218272A8D596900BC5FD9 /* SwiftMath */ = { + isa = XCSwiftPackageProductDependency; + productName = SwiftMath; + }; +/* End XCSwiftPackageProductDependency section */ + }; + rootObject = 04430C9F2A8D56AD00C7EECB /* Project object */; +} diff --git a/TestAssets/transitive-project-test2/Utils/Utils.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/TestAssets/transitive-project-test2/Utils/Utils.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/TestAssets/transitive-project-test2/Utils/Utils.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/TestAssets/transitive-project-test2/Utils/Utils.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/TestAssets/transitive-project-test2/Utils/Utils.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/TestAssets/transitive-project-test2/Utils/Utils.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/TestAssets/transitive-project-test2/Utils/Utils/Utils.swift b/TestAssets/transitive-project-test2/Utils/Utils/Utils.swift new file mode 100644 index 0000000..08fbfe3 --- /dev/null +++ b/TestAssets/transitive-project-test2/Utils/Utils/Utils.swift @@ -0,0 +1,21 @@ +// +// Utils.swift +// Utils +// +// Created by Jared Carlson on 8/16/23. +// + +// so we have a SPM as a transitive dependency for a static lib +import SwiftMath + +public func addInts(lhs: Int, rhs: Int) -> Int { + return add(lhs: lhs, rhs: rhs) +} + +public func subInts(lhs: Int, rhs: Int) -> Int { + return sub(lhs: lhs, rhs: rhs) +} + +class Utils { + +} diff --git a/TestAssets/transitive-project-test2/buildLog.txt b/TestAssets/transitive-project-test2/buildLog.txt new file mode 100644 index 0000000..d02105f --- /dev/null +++ b/TestAssets/transitive-project-test2/buildLog.txt @@ -0,0 +1,423 @@ + +Showing All Messages + +Prepare build +note: Building targets in dependency order + + +Building targets in dependency order + +Computing target dependency graph and provisioning inputs + +Create build description +Build description signature: d8d35951e82502489cf3b7caf343e6a3 +Build description path: /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/XCBuildData/d8d35951e82502489cf3b7caf343e6a3.xcbuilddata + +CreateBuildDirectory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2 + builtin-create-build-directory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation + +CreateBuildDirectory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2 + builtin-create-build-directory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath + +CreateBuildDirectory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2 + builtin-create-build-directory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath + +ClangStatCache /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2 + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache + +CreateBuildDirectory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2 + builtin-create-build-directory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos + +CreateBuildDirectory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/EagerLinkingTBDs/Release-iphoneos + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2 + builtin-create-build-directory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/EagerLinkingTBDs/Release-iphoneos + +CreateBuildDirectory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/PackageFrameworks + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2 + builtin-create-build-directory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/PackageFrameworks + + +Build target SwiftMath with configuration Release + +SymLink /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/SwiftMath.o ../../IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftMath.o (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/SwiftMath + /bin/ln -sfh ../../IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftMath.o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/SwiftMath.o + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/SwiftMath.modulemap (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/SwiftMath + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/SwiftMath.modulemap + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/GeneratedModuleMaps-iphoneos/SwiftMath.modulemap /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/SwiftMath.modulemap (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/SwiftMath + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-debug-symbols -strip-deterministic -strip-tool /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/SwiftMath.modulemap /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/GeneratedModuleMaps-iphoneos + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.SwiftFileList (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/SwiftMath + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.SwiftFileList + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.LinkFileList (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/SwiftMath + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.LinkFileList + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath-OutputFileMap.json (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/SwiftMath + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath-OutputFileMap.json + +SwiftDriver SwiftMath normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/SwiftMath + builtin-SwiftDriver -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SwiftMath -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.SwiftFileList -DSWIFT_PACKAGE -DXcode -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -target arm64-apple-ios11.0 -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -swift-version 5 -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -I /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk/Developer/Library/Frameworks -parse-as-library -c -num-threads 10 -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.swiftmodule -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/swift-overrides.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -emit-objc-header -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath-Swift.h -working-directory /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/SwiftMath -no-emit-module-separately-wmo + +SwiftCompile normal arm64 Compiling\ SwiftMath.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/SwiftMath/Sources/SwiftMath/SwiftMath.swift (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/SwiftMath + builtin-swiftTaskExecution -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/SwiftMath/Sources/SwiftMath/SwiftMath.swift -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.swiftmodule -emit-module-doc-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.swiftdoc -emit-module-source-info-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.swiftsourceinfo -emit-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath-master.d -serialize-diagnostics-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath-master.dia -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath-Swift.h -emit-abi-descriptor-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.abi.json -target arm64-apple-ios11.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -I /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -O -D SWIFT_PACKAGE -D Xcode -serialize-debugging-options -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/SwiftMath -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/swift-overrides.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -module-name SwiftMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.4 -target-sdk-name iphoneos16.4 -enable-default-cmo -parse-as-library -num-threads 10 -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.o -index-unit-output-path /SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.o + +SwiftCompile normal arm64 /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/SwiftMath/Sources/SwiftMath/SwiftMath.swift (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/SwiftMath + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/SwiftMath/Sources/SwiftMath/SwiftMath.swift -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.swiftmodule -emit-module-doc-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.swiftdoc -emit-module-source-info-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.swiftsourceinfo -emit-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath-master.d -serialize-diagnostics-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath-master.dia -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath-Swift.h -emit-abi-descriptor-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.abi.json -target arm64-apple-ios11.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -I /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -O -D SWIFT_PACKAGE -D Xcode -serialize-debugging-options -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/SwiftMath -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/swift-overrides.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -module-name SwiftMath -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.4 -target-sdk-name iphoneos16.4 -enable-default-cmo -parse-as-library -num-threads 10 -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.o -index-unit-output-path /SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.o + +SwiftDriver\ Compilation SwiftMath normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/SwiftMath + builtin-Swift-Compilation -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SwiftMath -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.SwiftFileList -DSWIFT_PACKAGE -DXcode -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -target arm64-apple-ios11.0 -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -swift-version 5 -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -I /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk/Developer/Library/Frameworks -parse-as-library -c -num-threads 10 -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.swiftmodule -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/swift-overrides.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -emit-objc-header -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath-Swift.h -working-directory /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/SwiftMath -no-emit-module-separately-wmo + +SwiftDriverJobDiscovery normal arm64 Compiling SwiftMath.swift (in target 'SwiftMath' from project 'SwiftMath') + +SwiftDriver\ Compilation\ Requirements SwiftMath normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/SwiftMath + builtin-Swift-Compilation-Requirements -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SwiftMath -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.SwiftFileList -DSWIFT_PACKAGE -DXcode -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -target arm64-apple-ios11.0 -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -swift-version 5 -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -I /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk/Developer/Library/Frameworks -parse-as-library -c -num-threads 10 -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.swiftmodule -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/swift-overrides.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/DerivedSources -Xcc -DSWIFT_PACKAGE -emit-objc-header -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath-Swift.h -working-directory /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/SwiftMath -no-emit-module-separately-wmo + +SwiftMergeGeneratedHeaders /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/GeneratedModuleMaps-iphoneos/SwiftMath-Swift.h /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath-Swift.h (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/SwiftMath + builtin-swiftHeaderTool -arch arm64 /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath-Swift.h -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/GeneratedModuleMaps-iphoneos/SwiftMath-Swift.h + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/SwiftMath.swiftmodule/arm64-apple-ios.swiftdoc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.swiftdoc (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/SwiftMath + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-debug-symbols -strip-deterministic -strip-tool /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks -rename /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.swiftdoc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/SwiftMath.swiftmodule/arm64-apple-ios.swiftdoc + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/SwiftMath.swiftmodule/arm64-apple-ios.abi.json /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.abi.json (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/SwiftMath + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-debug-symbols -strip-deterministic -strip-tool /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks -rename /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.abi.json /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/SwiftMath.swiftmodule/arm64-apple-ios.abi.json + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/SwiftMath.swiftmodule/arm64-apple-ios.swiftmodule /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.swiftmodule (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/SwiftMath + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-debug-symbols -strip-deterministic -strip-tool /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks -rename /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.swiftmodule /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/SwiftMath.swiftmodule/arm64-apple-ios.swiftmodule + +Ld /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftMath.o normal (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/SwiftMath + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios11.0 -r -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -L/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/EagerLinkingTBDs/Release-iphoneos -L/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/EagerLinkingTBDs/Release-iphoneos -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -F/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk/Developer/Library/Frameworks -filelist /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath_lto.o -fobjc-link-runtime -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath.swiftmodule -Xlinker -dependency_info -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/SwiftMath.build/Release-iphoneos/SwiftMath.build/Objects-normal/arm64/SwiftMath_dependency_info.dat -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftMath.o + +SetOwnerAndGroup jaredcarlson:staff /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftMath.o (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/SwiftMath + /usr/sbin/chown -RH jaredcarlson:staff /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftMath.o + +SetMode u+w,go-w,a+rX /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftMath.o (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/SwiftMath + /bin/chmod -RH u+w,go-w,a+rX /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftMath.o + +RegisterExecutionPolicyException /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftMath.o (in target 'SwiftMath' from project 'SwiftMath') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/SwiftMath + builtin-RegisterExecutionPolicyException /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/SwiftMath.o + + +Build target Utils of project Utils with configuration Release + +SymLink /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/libUtils.a ../../IntermediateBuildFilesPath/UninstalledProducts/iphoneos/libUtils.a (in target 'Utils' from project 'Utils') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils + /bin/ln -sfh ../../IntermediateBuildFilesPath/UninstalledProducts/iphoneos/libUtils.a /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/libUtils.a + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils-own-target-headers.hmap (in target 'Utils' from project 'Utils') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils-own-target-headers.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/all-product-headers.yaml (in target 'Utils' from project 'Utils') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/all-product-headers.yaml + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils-project-headers.hmap (in target 'Utils' from project 'Utils') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils-project-headers.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils-generated-files.hmap (in target 'Utils' from project 'Utils') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils-generated-files.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils-all-target-headers.hmap (in target 'Utils' from project 'Utils') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils-all-target-headers.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils.hmap (in target 'Utils' from project 'Utils') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils-all-non-framework-target-headers.hmap (in target 'Utils' from project 'Utils') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils-all-non-framework-target-headers.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils.SwiftFileList (in target 'Utils' from project 'Utils') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils.SwiftFileList + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils-OutputFileMap.json (in target 'Utils' from project 'Utils') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils-OutputFileMap.json + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils.LinkFileList (in target 'Utils' from project 'Utils') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils.LinkFileList + +SwiftDriver Utils normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Utils' from project 'Utils') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils + builtin-SwiftDriver -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Utils -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils.SwiftFileList -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -target arm64-apple-ios16.4 -enable-bare-slash-regex -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -swift-version 5 -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -parse-as-library -c -num-threads 10 -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils.swiftmodule -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/DerivedSources -emit-objc-header -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils-Swift.h -working-directory /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils -no-emit-module-separately-wmo + +SwiftCompile normal arm64 Compiling\ Utils.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils/Utils/Utils.swift (in target 'Utils' from project 'Utils') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils + builtin-swiftTaskExecution -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils/Utils/Utils.swift -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils.swiftmodule -emit-module-doc-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils.swiftdoc -emit-module-source-info-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils.swiftsourceinfo -emit-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils-master.d -serialize-diagnostics-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils-master.dia -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils-Swift.h -emit-abi-descriptor-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils.abi.json -target arm64-apple-ios16.4 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -no-color-diagnostics -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -O -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/DerivedSources -module-name Utils -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.4 -target-sdk-name iphoneos16.4 -enable-default-cmo -parse-as-library -num-threads 10 -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils.o -index-unit-output-path /Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils.o + +SwiftCompile normal arm64 /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils/Utils/Utils.swift (in target 'Utils' from project 'Utils') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils/Utils/Utils.swift -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils.swiftmodule -emit-module-doc-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils.swiftdoc -emit-module-source-info-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils.swiftsourceinfo -emit-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils-master.d -serialize-diagnostics-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils-master.dia -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils-Swift.h -emit-abi-descriptor-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils.abi.json -target arm64-apple-ios16.4 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -no-color-diagnostics -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -O -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/DerivedSources -module-name Utils -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.4 -target-sdk-name iphoneos16.4 -enable-default-cmo -parse-as-library -num-threads 10 -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils.o -index-unit-output-path /Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils.o + +SwiftDriver\ Compilation Utils normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Utils' from project 'Utils') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils + builtin-Swift-Compilation -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Utils -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils.SwiftFileList -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -target arm64-apple-ios16.4 -enable-bare-slash-regex -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -swift-version 5 -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -parse-as-library -c -num-threads 10 -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils.swiftmodule -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/DerivedSources -emit-objc-header -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils-Swift.h -working-directory /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils -no-emit-module-separately-wmo + +SwiftDriverJobDiscovery normal arm64 Compiling Utils.swift (in target 'Utils' from project 'Utils') + +SwiftDriver\ Compilation\ Requirements Utils normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Utils' from project 'Utils') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils + builtin-Swift-Compilation-Requirements -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Utils -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils.SwiftFileList -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -target arm64-apple-ios16.4 -enable-bare-slash-regex -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -swift-version 5 -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -parse-as-library -c -num-threads 10 -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils.swiftmodule -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Utils-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/DerivedSources -emit-objc-header -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils-Swift.h -working-directory /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils -no-emit-module-separately-wmo + +Libtool /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/libUtils.a normal (in target 'Utils' from project 'Utils') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool -static -arch_only arm64 -D -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -L/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -filelist /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils.LinkFileList /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/SwiftMath.o -dependency_info /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils_libtool_dependency_info.dat -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/libUtils.a + +/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning same member name (SwiftMath.o) in output file used for input files: /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/SwiftMath.o and: /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/SwiftMath.o (due to use of basename, truncation, blank padding or duplicate input files) + +warning same member name (SwiftMath.o) in output file used for input files: /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/SwiftMath.o and: /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/SwiftMath.o (due to use of basename, truncation, blank padding or duplicate input files) + +SwiftMergeGeneratedHeaders /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/DerivedSources/Utils-Swift.h /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils-Swift.h (in target 'Utils' from project 'Utils') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils + builtin-swiftHeaderTool -arch arm64 /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils-Swift.h -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/DerivedSources/Utils-Swift.h + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/Utils.swiftmodule/arm64-apple-ios.swiftmodule /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils.swiftmodule (in target 'Utils' from project 'Utils') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils.swiftmodule /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/Utils.swiftmodule/arm64-apple-ios.swiftmodule + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/Utils.swiftmodule/arm64-apple-ios.swiftdoc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils.swiftdoc (in target 'Utils' from project 'Utils') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils.swiftdoc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/Utils.swiftmodule/arm64-apple-ios.swiftdoc + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/Utils.swiftmodule/arm64-apple-ios.abi.json /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils.abi.json (in target 'Utils' from project 'Utils') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils.abi.json /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/Utils.swiftmodule/arm64-apple-ios.abi.json + +Strip /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/libUtils.a (in target 'Utils' from project 'Utils') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -D -S -T /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/libUtils.a + +SetOwnerAndGroup jaredcarlson:staff /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/libUtils.a (in target 'Utils' from project 'Utils') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils + /usr/sbin/chown -RH jaredcarlson:staff /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/libUtils.a + +SetMode u+w,go-w,a+rX /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/libUtils.a (in target 'Utils' from project 'Utils') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/Utils + /bin/chmod -RH u+w,go-w,a+rX /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/libUtils.a + + +Build target StaticSpace of project StaticSpace with configuration Release + +SymLink /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/StaticSpace.app ../../InstallationBuildProductsLocation/Applications/StaticSpace.app (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + /bin/ln -sfh ../../InstallationBuildProductsLocation/Applications/StaticSpace.app /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/StaticSpace.app + +MkDir /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + /bin/mkdir -p /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app + +ProcessProductPackaging /Users/jaredcarlson/Library/MobileDevice/Provisioning\ Profiles/3cf0977e-50d7-4bdf-8a0f-a413631c6d46.mobileprovision /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app/embedded.mobileprovision (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + builtin-productPackagingUtility /Users/jaredcarlson/Library/MobileDevice/Provisioning\ Profiles/3cf0977e-50d7-4bdf-8a0f-a413631c6d46.mobileprovision -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app/embedded.mobileprovision + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/DerivedSources/Entitlements.plist (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/DerivedSources/Entitlements.plist + +ProcessProductPackaging "" /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace.app.xcent (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + + Entitlements: + + { + "application-identifier" = "Q7YBK8CJUP.com.gototheboard.StaticSpace"; + "com.apple.developer.team-identifier" = Q7YBK8CJUP; + "get-task-allow" = 1; +} + + builtin-productPackagingUtility -entitlements -format xml -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace.app.xcent + +ProcessProductPackagingDER /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace.app.xcent /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace.app.xcent.der (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + /usr/bin/derq query -f xml -i /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace.app.xcent -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace.app.xcent.der --raw + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/all-product-headers.yaml (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/all-product-headers.yaml + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace.hmap (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace-own-target-headers.hmap (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace-own-target-headers.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace-project-headers.hmap (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace-project-headers.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace-all-target-headers.hmap (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace-all-target-headers.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace-generated-files.hmap (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace-generated-files.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace-all-non-framework-target-headers.hmap (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace-all-non-framework-target-headers.hmap + +CompileAssetCatalog /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Assets.xcassets (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + /Applications/Xcode.app/Contents/Developer/usr/bin/actool --output-format human-readable-text --notices --warnings --export-dependency-info /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/assetcatalog_dependencies --output-partial-info-plist /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/assetcatalog_generated_info.plist --app-icon AppIcon --accent-color AccentColor --compress-pngs --enable-on-demand-resources YES --development-region en --target-device iphone --target-device ipad --minimum-deployment-target 16.4 --platform iphoneos --compile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Assets.xcassets + +/* com.apple.actool.compilation-results */ +/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/assetcatalog_generated_info.plist + + +CompileStoryboard /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Base.lproj/Main.storyboard (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + /Applications/Xcode.app/Contents/Developer/usr/bin/ibtool --errors --warnings --notices --module StaticSpace --output-partial-info-plist /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Base.lproj/Main-SBPartialInfo.plist --auto-activate-custom-fonts --target-device iphone --target-device ipad --minimum-deployment-target 16.4 --output-format human-readable-text --compilation-directory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Base.lproj /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Base.lproj/Main.storyboard + +CompileStoryboard /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Base.lproj/LaunchScreen.storyboard (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + /Applications/Xcode.app/Contents/Developer/usr/bin/ibtool --errors --warnings --notices --module StaticSpace --output-partial-info-plist /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Base.lproj/LaunchScreen-SBPartialInfo.plist --auto-activate-custom-fonts --target-device iphone --target-device ipad --minimum-deployment-target 16.4 --output-format human-readable-text --compilation-directory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Base.lproj /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Base.lproj/LaunchScreen.storyboard + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/StaticSpace-OutputFileMap.json (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/StaticSpace-OutputFileMap.json + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/StaticSpace.SwiftFileList (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/StaticSpace.SwiftFileList + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/StaticSpace.LinkFileList (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/StaticSpace.LinkFileList + +SwiftDriver StaticSpace normal arm64 com.apple.xcode.tools.swift.compiler (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + builtin-SwiftDriver -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name StaticSpace -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/StaticSpace.SwiftFileList -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -target arm64-apple-ios16.4 -enable-bare-slash-regex -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -swift-version 5 -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64 -c -num-threads 10 -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/StaticSpace-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/StaticSpace.swiftmodule -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/DerivedSources -emit-objc-header -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/StaticSpace-Swift.h -working-directory /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace -no-emit-module-separately-wmo + +SwiftCompile normal arm64 Compiling\ ViewController.swift,\ AppDelegate.swift,\ SceneDelegate.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/ViewController.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/AppDelegate.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/SceneDelegate.swift (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + builtin-swiftTaskExecution -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/ViewController.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/AppDelegate.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/SceneDelegate.swift -supplementary-output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/supplementaryOutputs-1 -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64 -target arm64-apple-ios16.4 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -no-color-diagnostics -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -O -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/DerivedSources -module-name StaticSpace -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.4 -target-sdk-name iphoneos16.4 -enable-default-cmo -num-threads 10 -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/ViewController.o -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/AppDelegate.o -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/SceneDelegate.o -index-unit-output-path /StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/ViewController.o -index-unit-output-path /StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/AppDelegate.o -index-unit-output-path /StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/SceneDelegate.o + +CompileSwift normal arm64 (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/ViewController.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/AppDelegate.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/SceneDelegate.swift -supplementary-output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/supplementaryOutputs-1 -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64 -target arm64-apple-ios16.4 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -no-color-diagnostics -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -O -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/DerivedSources -module-name StaticSpace -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.4 -target-sdk-name iphoneos16.4 -enable-default-cmo -num-threads 10 -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/ViewController.o -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/AppDelegate.o -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/SceneDelegate.o -index-unit-output-path /StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/ViewController.o -index-unit-output-path /StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/AppDelegate.o -index-unit-output-path /StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/SceneDelegate.o + +SwiftDriver\ Compilation StaticSpace normal arm64 com.apple.xcode.tools.swift.compiler (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + builtin-Swift-Compilation -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name StaticSpace -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/StaticSpace.SwiftFileList -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -target arm64-apple-ios16.4 -enable-bare-slash-regex -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -swift-version 5 -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64 -c -num-threads 10 -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/StaticSpace-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/StaticSpace.swiftmodule -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/DerivedSources -emit-objc-header -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/StaticSpace-Swift.h -working-directory /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace -no-emit-module-separately-wmo + +ProcessInfoPlistFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app/Info.plist /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Info.plist (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + builtin-infoPlistUtility /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/Info.plist -producttype com.apple.product-type.application -genpkginfo /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app/PkgInfo -expandbuildsettings -format binary -platform iphoneos -additionalcontentfile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Base.lproj/LaunchScreen-SBPartialInfo.plist -additionalcontentfile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Base.lproj/Main-SBPartialInfo.plist -additionalcontentfile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/assetcatalog_generated_info.plist -requiredArchitecture arm64 -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app/Info.plist + +LinkStoryboards (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + /Applications/Xcode.app/Contents/Developer/usr/bin/ibtool --errors --warnings --notices --module StaticSpace --target-device iphone --target-device ipad --minimum-deployment-target 16.4 --output-format human-readable-text --link /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Base.lproj/LaunchScreen.storyboardc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Base.lproj/Main.storyboardc + +SwiftDriverJobDiscovery normal arm64 Compiling ViewController.swift, AppDelegate.swift, SceneDelegate.swift (in target 'StaticSpace' from project 'StaticSpace') + +SwiftDriver\ Compilation\ Requirements StaticSpace normal arm64 com.apple.xcode.tools.swift.compiler (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + builtin-Swift-Compilation-Requirements -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name StaticSpace -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/StaticSpace.SwiftFileList -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -target arm64-apple-ios16.4 -enable-bare-slash-regex -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -swift-version 5 -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64 -c -num-threads 10 -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/StaticSpace-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/StaticSpace.swiftmodule -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/DerivedSources -emit-objc-header -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/StaticSpace-Swift.h -working-directory /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace -no-emit-module-separately-wmo + +SwiftMergeGeneratedHeaders /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/DerivedSources/StaticSpace-Swift.h /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/StaticSpace-Swift.h (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + builtin-swiftHeaderTool -arch arm64 /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/StaticSpace-Swift.h -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/DerivedSources/StaticSpace-Swift.h + +Ld /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app/StaticSpace normal (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios16.4 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -L/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/EagerLinkingTBDs/Release-iphoneos -L/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/EagerLinkingTBDs/Release-iphoneos -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/PackageFrameworks -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos -filelist /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/StaticSpace.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/StaticSpace_lto.o -Xlinker -final_output -Xlinker /Applications/StaticSpace.app/StaticSpace -fobjc-link-runtime -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/StaticSpace.swiftmodule /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/libUtils.a -Xlinker -no_adhoc_codesign -Xlinker -dependency_info -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/StaticSpace_dependency_info.dat -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app/StaticSpace -Xlinker -add_ast_path -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/Utils.build/Release-iphoneos/Utils.build/Objects-normal/arm64/Utils.swiftmodule + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/StaticSpace.swiftmodule/arm64-apple-ios.swiftmodule /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/StaticSpace.swiftmodule (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/StaticSpace.swiftmodule /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/StaticSpace.swiftmodule/arm64-apple-ios.swiftmodule + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/StaticSpace.swiftmodule/arm64-apple-ios.abi.json /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/StaticSpace.abi.json (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/StaticSpace.abi.json /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/StaticSpace.swiftmodule/arm64-apple-ios.abi.json + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/StaticSpace.swiftmodule/arm64-apple-ios.swiftdoc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/StaticSpace.swiftdoc (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/StaticSpace.swiftdoc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/StaticSpace.swiftmodule/arm64-apple-ios.swiftdoc + +ExtractAppIntentsMetadata (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + /Applications/Xcode.app/Contents/Developer/usr/bin/appintentsmetadataprocessor --output /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app --toolchain-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name StaticSpace --sdk-root /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk --target-triple arm64-apple-ios16.4 --source-files /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/ViewController.swift --source-files /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/AppDelegate.swift --source-files /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace/StaticSpace/SceneDelegate.swift --binary-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app/StaticSpace --dependency-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/StaticSpace_dependency_info.dat --stringsdata-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata + +note: Metadata extraction skipped. No AppIntents.framework dependency found. (in target 'StaticSpace' from project 'StaticSpace') + +Metadata extraction skipped. No AppIntents.framework dependency found. + +GenerateDSYMFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/StaticSpace.app.dSYM /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app/StaticSpace (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app/StaticSpace -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/Release-iphoneos/StaticSpace.app.dSYM + +CopySwiftLibs /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + builtin-swiftStdLibTool --copy --verbose --sign 3BDF57129BFD07856721AF6498FCADAC04A759AD --scan-executable /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app/StaticSpace --scan-folder /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app/Frameworks --scan-folder /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app/PlugIns --scan-folder /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app/SystemExtensions --scan-folder /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app/Extensions --platform iphoneos --toolchain /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app/Frameworks --unsigned-destination /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/BuildProductsPath/SwiftSupport --strip-bitcode --strip-bitcode-tool /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip --emit-dependency-info /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/SwiftStdLibToolInputDependencies.dep --filter-for-swift-os + +Strip /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app/StaticSpace (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -D /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app/StaticSpace + +SetOwnerAndGroup jaredcarlson:staff /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + /usr/sbin/chown -RH jaredcarlson:staff /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app + +SetMode u+w,go-w,a+rX /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + /bin/chmod -RH u+w,go-w,a+rX /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app + +CodeSign /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + + Signing Identity: "Apple Development: Jared Carlson (5MZ2F237S9)" + Provisioning Profile: "iOS Team Provisioning Profile: *" + (3cf0977e-50d7-4bdf-8a0f-a413631c6d46) + + /usr/bin/codesign --force --sign 3BDF57129BFD07856721AF6498FCADAC04A759AD --entitlements /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/IntermediateBuildFilesPath/StaticSpace.build/Release-iphoneos/StaticSpace.build/StaticSpace.app.xcent --generate-entitlement-der /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app + +RegisterExecutionPolicyException /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + builtin-RegisterExecutionPolicyException /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app + +Validate /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + builtin-validationUtility /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app + +Touch /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app (in target 'StaticSpace' from project 'StaticSpace') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test2/StaticSpace + /usr/bin/touch -c /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/StaticTestSpace-fcfhcfjvmamuaagjivuouseyeqgv/Build/Intermediates.noindex/ArchiveIntermediates/StaticSpace/InstallationBuildProductsLocation/Applications/StaticSpace.app + + + +Build succeeded 8/16/23, 3:25 PM 3.9 seconds From 442096cb34944972d41b53a308e39a99f41deb57 Mon Sep 17 00:00:00 2001 From: Jared Carlson Date: Wed, 16 Aug 2023 20:02:14 -0400 Subject: [PATCH 2/3] There's definitely some wonky stuff going on, but I'll have to see what's up in a bit --- .../DebugLogger.xcodeproj/project.pbxproj | 382 ++++++++++ .../DebugLogger/DebugLogger/DebugLogger.h | 18 + .../DebugLogger/DebugLogger/DebugLogger.swift | 26 + .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../LogUtils/LogUtils.docc/LogUtils.md | 13 + .../LogUtils/LogUtils/LogUtils.h | 18 + .../LogUtils/LogUtils/Utils.h | 16 + .../LogUtils/LogUtils/Utils.m | 31 + .../LogUtils/LogUtilsTests/LogUtilsTests.m | 36 + .../Logger/.gitignore | 9 + .../Logger/Package.swift | 28 + .../transitive-project-test3/Logger/README.md | 3 + .../Logger/Sources/Logger/Logger.swift | 10 + .../Tests/LoggerTests/LoggerTests.swift | 11 + .../LoggingApp.xcodeproj/project.pbxproj | 680 ++++++++++++++++++ .../LoggingApp/LoggingApp/AppDelegate.swift | 36 + .../AccentColor.colorset/Contents.json | 11 + .../AppIcon.appiconset/Contents.json | 13 + .../LoggingApp/Assets.xcassets/Contents.json | 6 + .../Base.lproj/LaunchScreen.storyboard | 25 + .../LoggingApp/Base.lproj/Main.storyboard | 24 + .../LoggingApp/LoggingApp/Info.plist | 25 + .../LoggingApp/LoggingApp/SceneDelegate.swift | 52 ++ .../LoggingApp/ViewController.swift | 29 + .../LoggingAppTests/LoggingAppTests.swift | 36 + .../LoggingAppUITests/LoggingAppUITests.swift | 41 ++ .../LoggingAppUITestsLaunchTests.swift | 32 + .../project.pbxproj | 382 ++++++++++ .../LoggingUtilities/LoggingUtilities.h | 18 + .../LoggingUtilities/Utilities.swift | 24 + TestAssets/transitive-project-test3/note.md | 5 + TestAssets/transitive-project-test3/note.md~ | 0 33 files changed, 2055 insertions(+) create mode 100644 TestAssets/transitive-project-test3/DebugLogger/DebugLogger.xcodeproj/project.pbxproj create mode 100644 TestAssets/transitive-project-test3/DebugLogger/DebugLogger/DebugLogger.h create mode 100644 TestAssets/transitive-project-test3/DebugLogger/DebugLogger/DebugLogger.swift create mode 100644 TestAssets/transitive-project-test3/LogDependency.xcworkspace/contents.xcworkspacedata create mode 100644 TestAssets/transitive-project-test3/LogDependency.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100755 TestAssets/transitive-project-test3/LogUtils/LogUtils/LogUtils.docc/LogUtils.md create mode 100644 TestAssets/transitive-project-test3/LogUtils/LogUtils/LogUtils.h create mode 100644 TestAssets/transitive-project-test3/LogUtils/LogUtils/Utils.h create mode 100644 TestAssets/transitive-project-test3/LogUtils/LogUtils/Utils.m create mode 100644 TestAssets/transitive-project-test3/LogUtils/LogUtilsTests/LogUtilsTests.m create mode 100644 TestAssets/transitive-project-test3/Logger/.gitignore create mode 100644 TestAssets/transitive-project-test3/Logger/Package.swift create mode 100644 TestAssets/transitive-project-test3/Logger/README.md create mode 100644 TestAssets/transitive-project-test3/Logger/Sources/Logger/Logger.swift create mode 100644 TestAssets/transitive-project-test3/Logger/Tests/LoggerTests/LoggerTests.swift create mode 100644 TestAssets/transitive-project-test3/LoggingApp/LoggingApp.xcodeproj/project.pbxproj create mode 100644 TestAssets/transitive-project-test3/LoggingApp/LoggingApp/AppDelegate.swift create mode 100644 TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Assets.xcassets/AccentColor.colorset/Contents.json create mode 100644 TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Assets.xcassets/Contents.json create mode 100644 TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Base.lproj/LaunchScreen.storyboard create mode 100644 TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Base.lproj/Main.storyboard create mode 100644 TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Info.plist create mode 100644 TestAssets/transitive-project-test3/LoggingApp/LoggingApp/SceneDelegate.swift create mode 100644 TestAssets/transitive-project-test3/LoggingApp/LoggingApp/ViewController.swift create mode 100644 TestAssets/transitive-project-test3/LoggingApp/LoggingAppTests/LoggingAppTests.swift create mode 100644 TestAssets/transitive-project-test3/LoggingApp/LoggingAppUITests/LoggingAppUITests.swift create mode 100644 TestAssets/transitive-project-test3/LoggingApp/LoggingAppUITests/LoggingAppUITestsLaunchTests.swift create mode 100644 TestAssets/transitive-project-test3/LoggingUtilities/LoggingUtilities.xcodeproj/project.pbxproj create mode 100644 TestAssets/transitive-project-test3/LoggingUtilities/LoggingUtilities/LoggingUtilities.h create mode 100644 TestAssets/transitive-project-test3/LoggingUtilities/LoggingUtilities/Utilities.swift create mode 100644 TestAssets/transitive-project-test3/note.md create mode 100644 TestAssets/transitive-project-test3/note.md~ diff --git a/TestAssets/transitive-project-test3/DebugLogger/DebugLogger.xcodeproj/project.pbxproj b/TestAssets/transitive-project-test3/DebugLogger/DebugLogger.xcodeproj/project.pbxproj new file mode 100644 index 0000000..c3cb148 --- /dev/null +++ b/TestAssets/transitive-project-test3/DebugLogger/DebugLogger.xcodeproj/project.pbxproj @@ -0,0 +1,382 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 56; + objects = { + +/* Begin PBXBuildFile section */ + 04A3AF672A8D994A000F8DCD /* DebugLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 04A3AF662A8D994A000F8DCD /* DebugLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 04A3AF742A8D995E000F8DCD /* DebugLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04A3AF732A8D995E000F8DCD /* DebugLogger.swift */; }; + 04A3AF7A2A8D9A9B000F8DCD /* Logger in Frameworks */ = {isa = PBXBuildFile; productRef = 04A3AF792A8D9A9B000F8DCD /* Logger */; }; +/* End PBXBuildFile section */ + +/* Begin PBXFileReference section */ + 04A3AF632A8D994A000F8DCD /* DebugLogger.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = DebugLogger.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 04A3AF662A8D994A000F8DCD /* DebugLogger.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DebugLogger.h; sourceTree = ""; }; + 04A3AF732A8D995E000F8DCD /* DebugLogger.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DebugLogger.swift; sourceTree = ""; }; + 04A3AF762A8D99BF000F8DCD /* Logger */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = Logger; path = ../Logger; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 04A3AF602A8D994A000F8DCD /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 04A3AF7A2A8D9A9B000F8DCD /* Logger in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 04A3AF592A8D994A000F8DCD = { + isa = PBXGroup; + children = ( + 04A3AF752A8D99BF000F8DCD /* Packages */, + 04A3AF652A8D994A000F8DCD /* DebugLogger */, + 04A3AF642A8D994A000F8DCD /* Products */, + 04A3AF782A8D9A9B000F8DCD /* Frameworks */, + ); + sourceTree = ""; + }; + 04A3AF642A8D994A000F8DCD /* Products */ = { + isa = PBXGroup; + children = ( + 04A3AF632A8D994A000F8DCD /* DebugLogger.framework */, + ); + name = Products; + sourceTree = ""; + }; + 04A3AF652A8D994A000F8DCD /* DebugLogger */ = { + isa = PBXGroup; + children = ( + 04A3AF662A8D994A000F8DCD /* DebugLogger.h */, + 04A3AF732A8D995E000F8DCD /* DebugLogger.swift */, + ); + path = DebugLogger; + sourceTree = ""; + }; + 04A3AF752A8D99BF000F8DCD /* Packages */ = { + isa = PBXGroup; + children = ( + 04A3AF762A8D99BF000F8DCD /* Logger */, + ); + name = Packages; + sourceTree = ""; + }; + 04A3AF782A8D9A9B000F8DCD /* Frameworks */ = { + isa = PBXGroup; + children = ( + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + 04A3AF5E2A8D994A000F8DCD /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 04A3AF672A8D994A000F8DCD /* DebugLogger.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + 04A3AF622A8D994A000F8DCD /* DebugLogger */ = { + isa = PBXNativeTarget; + buildConfigurationList = 04A3AF6A2A8D994A000F8DCD /* Build configuration list for PBXNativeTarget "DebugLogger" */; + buildPhases = ( + 04A3AF5E2A8D994A000F8DCD /* Headers */, + 04A3AF5F2A8D994A000F8DCD /* Sources */, + 04A3AF602A8D994A000F8DCD /* Frameworks */, + 04A3AF612A8D994A000F8DCD /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = DebugLogger; + packageProductDependencies = ( + 04A3AF792A8D9A9B000F8DCD /* Logger */, + ); + productName = DebugLogger; + productReference = 04A3AF632A8D994A000F8DCD /* DebugLogger.framework */; + productType = "com.apple.product-type.framework"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 04A3AF5A2A8D994A000F8DCD /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = 1; + LastUpgradeCheck = 1430; + TargetAttributes = { + 04A3AF622A8D994A000F8DCD = { + CreatedOnToolsVersion = 14.3.1; + LastSwiftMigration = 1430; + }; + }; + }; + buildConfigurationList = 04A3AF5D2A8D994A000F8DCD /* Build configuration list for PBXProject "DebugLogger" */; + compatibilityVersion = "Xcode 14.0"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 04A3AF592A8D994A000F8DCD; + productRefGroup = 04A3AF642A8D994A000F8DCD /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 04A3AF622A8D994A000F8DCD /* DebugLogger */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 04A3AF612A8D994A000F8DCD /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 04A3AF5F2A8D994A000F8DCD /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 04A3AF742A8D995E000F8DCD /* DebugLogger.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin XCBuildConfiguration section */ + 04A3AF682A8D994A000F8DCD /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 04A3AF692A8D994A000F8DCD /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 04A3AF6B2A8D994A000F8DCD /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_KEY_NSHumanReadableCopyright = ""; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; + MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++20"; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.DebugLogger; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 04A3AF6C2A8D994A000F8DCD /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_KEY_NSHumanReadableCopyright = ""; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; + MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++20"; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.DebugLogger; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 04A3AF5D2A8D994A000F8DCD /* Build configuration list for PBXProject "DebugLogger" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04A3AF682A8D994A000F8DCD /* Debug */, + 04A3AF692A8D994A000F8DCD /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 04A3AF6A2A8D994A000F8DCD /* Build configuration list for PBXNativeTarget "DebugLogger" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04A3AF6B2A8D994A000F8DCD /* Debug */, + 04A3AF6C2A8D994A000F8DCD /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + +/* Begin XCSwiftPackageProductDependency section */ + 04A3AF792A8D9A9B000F8DCD /* Logger */ = { + isa = XCSwiftPackageProductDependency; + productName = Logger; + }; +/* End XCSwiftPackageProductDependency section */ + }; + rootObject = 04A3AF5A2A8D994A000F8DCD /* Project object */; +} diff --git a/TestAssets/transitive-project-test3/DebugLogger/DebugLogger/DebugLogger.h b/TestAssets/transitive-project-test3/DebugLogger/DebugLogger/DebugLogger.h new file mode 100644 index 0000000..5e521ed --- /dev/null +++ b/TestAssets/transitive-project-test3/DebugLogger/DebugLogger/DebugLogger.h @@ -0,0 +1,18 @@ +// +// DebugLogger.h +// DebugLogger +// +// Created by Jared Carlson on 8/16/23. +// + +#import + +//! Project version number for DebugLogger. +FOUNDATION_EXPORT double DebugLoggerVersionNumber; + +//! Project version string for DebugLogger. +FOUNDATION_EXPORT const unsigned char DebugLoggerVersionString[]; + +// In this header, you should import all the public headers of your framework using statements like #import + + diff --git a/TestAssets/transitive-project-test3/DebugLogger/DebugLogger/DebugLogger.swift b/TestAssets/transitive-project-test3/DebugLogger/DebugLogger/DebugLogger.swift new file mode 100644 index 0000000..49ff000 --- /dev/null +++ b/TestAssets/transitive-project-test3/DebugLogger/DebugLogger/DebugLogger.swift @@ -0,0 +1,26 @@ +// +// DebugLogger.swift +// DebugLogger +// +// Created by Jared Carlson on 8/16/23. +// + +import Foundation +import Logger + + +struct LogWriter { + + var level:String + let logger:Logger + + public init() { + self.level = "debug" + self.logger = Logger() + } + + public func log(msg:String) { + let message = "\(self.level): \(msg)" + self.logger.log(msg: message) + } +} diff --git a/TestAssets/transitive-project-test3/LogDependency.xcworkspace/contents.xcworkspacedata b/TestAssets/transitive-project-test3/LogDependency.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..6f96750 --- /dev/null +++ b/TestAssets/transitive-project-test3/LogDependency.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/TestAssets/transitive-project-test3/LogDependency.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/TestAssets/transitive-project-test3/LogDependency.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/TestAssets/transitive-project-test3/LogDependency.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/TestAssets/transitive-project-test3/LogUtils/LogUtils/LogUtils.docc/LogUtils.md b/TestAssets/transitive-project-test3/LogUtils/LogUtils/LogUtils.docc/LogUtils.md new file mode 100755 index 0000000..ffe7817 --- /dev/null +++ b/TestAssets/transitive-project-test3/LogUtils/LogUtils/LogUtils.docc/LogUtils.md @@ -0,0 +1,13 @@ +# ``LogUtils`` + +Summary + +## Overview + +Text + +## Topics + +### Group + +- ``Symbol`` \ No newline at end of file diff --git a/TestAssets/transitive-project-test3/LogUtils/LogUtils/LogUtils.h b/TestAssets/transitive-project-test3/LogUtils/LogUtils/LogUtils.h new file mode 100644 index 0000000..358b4d9 --- /dev/null +++ b/TestAssets/transitive-project-test3/LogUtils/LogUtils/LogUtils.h @@ -0,0 +1,18 @@ +// +// LogUtils.h +// LogUtils +// +// Created by Jared Carlson on 8/16/23. +// + +#import + +//! Project version number for LogUtils. +FOUNDATION_EXPORT double LogUtilsVersionNumber; + +//! Project version string for LogUtils. +FOUNDATION_EXPORT const unsigned char LogUtilsVersionString[]; + +// In this header, you should import all the public headers of your framework using statements like #import + + diff --git a/TestAssets/transitive-project-test3/LogUtils/LogUtils/Utils.h b/TestAssets/transitive-project-test3/LogUtils/LogUtils/Utils.h new file mode 100644 index 0000000..aaca7a5 --- /dev/null +++ b/TestAssets/transitive-project-test3/LogUtils/LogUtils/Utils.h @@ -0,0 +1,16 @@ +// +// Utils.h +// LogUtils +// +// Created by Jared Carlson on 8/16/23. +// + +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface Utils : NSObject + +@end + +NS_ASSUME_NONNULL_END diff --git a/TestAssets/transitive-project-test3/LogUtils/LogUtils/Utils.m b/TestAssets/transitive-project-test3/LogUtils/LogUtils/Utils.m new file mode 100644 index 0000000..8ee455d --- /dev/null +++ b/TestAssets/transitive-project-test3/LogUtils/LogUtils/Utils.m @@ -0,0 +1,31 @@ +// +// Utils.m +// LogUtils +// +// Created by Jared Carlson on 8/16/23. +// + +#import "Utils.h" +#import "Logger" +@implementation Utils + + +import Logger + +struct LogWriter { + + var level:String + let logger:Logger + + public init(level:String) { + self.level = level + self.logger = Logger() + } + + public func log(msg:String) { + self.logger.log(msg: msg) + } +} + + +@end diff --git a/TestAssets/transitive-project-test3/LogUtils/LogUtilsTests/LogUtilsTests.m b/TestAssets/transitive-project-test3/LogUtils/LogUtilsTests/LogUtilsTests.m new file mode 100644 index 0000000..0aa1a01 --- /dev/null +++ b/TestAssets/transitive-project-test3/LogUtils/LogUtilsTests/LogUtilsTests.m @@ -0,0 +1,36 @@ +// +// LogUtilsTests.m +// LogUtilsTests +// +// Created by Jared Carlson on 8/16/23. +// + +#import + +@interface LogUtilsTests : XCTestCase + +@end + +@implementation LogUtilsTests + +- (void)setUp { + // Put setup code here. This method is called before the invocation of each test method in the class. +} + +- (void)tearDown { + // Put teardown code here. This method is called after the invocation of each test method in the class. +} + +- (void)testExample { + // This is an example of a functional test case. + // Use XCTAssert and related functions to verify your tests produce the correct results. +} + +- (void)testPerformanceExample { + // This is an example of a performance test case. + [self measureBlock:^{ + // Put the code you want to measure the time of here. + }]; +} + +@end diff --git a/TestAssets/transitive-project-test3/Logger/.gitignore b/TestAssets/transitive-project-test3/Logger/.gitignore new file mode 100644 index 0000000..3b29812 --- /dev/null +++ b/TestAssets/transitive-project-test3/Logger/.gitignore @@ -0,0 +1,9 @@ +.DS_Store +/.build +/Packages +/*.xcodeproj +xcuserdata/ +DerivedData/ +.swiftpm/config/registries.json +.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata +.netrc diff --git a/TestAssets/transitive-project-test3/Logger/Package.swift b/TestAssets/transitive-project-test3/Logger/Package.swift new file mode 100644 index 0000000..6358b53 --- /dev/null +++ b/TestAssets/transitive-project-test3/Logger/Package.swift @@ -0,0 +1,28 @@ +// swift-tools-version: 5.8 +// The swift-tools-version declares the minimum version of Swift required to build this package. + +import PackageDescription + +let package = Package( + name: "Logger", + products: [ + // Products define the executables and libraries a package produces, and make them visible to other packages. + .library( + name: "Logger", + targets: ["Logger"]), + ], + dependencies: [ + // Dependencies declare other packages that this package depends on. + // .package(url: /* package url */, from: "1.0.0"), + ], + targets: [ + // Targets are the basic building blocks of a package. A target can define a module or a test suite. + // Targets can depend on other targets in this package, and on products in packages this package depends on. + .target( + name: "Logger", + dependencies: []), + .testTarget( + name: "LoggerTests", + dependencies: ["Logger"]), + ] +) diff --git a/TestAssets/transitive-project-test3/Logger/README.md b/TestAssets/transitive-project-test3/Logger/README.md new file mode 100644 index 0000000..1e25025 --- /dev/null +++ b/TestAssets/transitive-project-test3/Logger/README.md @@ -0,0 +1,3 @@ +# Logger + +A description of this package. diff --git a/TestAssets/transitive-project-test3/Logger/Sources/Logger/Logger.swift b/TestAssets/transitive-project-test3/Logger/Sources/Logger/Logger.swift new file mode 100644 index 0000000..2f7a021 --- /dev/null +++ b/TestAssets/transitive-project-test3/Logger/Sources/Logger/Logger.swift @@ -0,0 +1,10 @@ +public struct Logger { + public private(set) var text = "Hello, World!" + + public init() { + } + + public func log(msg:String) { + print("Log: \(msg)") + } +} diff --git a/TestAssets/transitive-project-test3/Logger/Tests/LoggerTests/LoggerTests.swift b/TestAssets/transitive-project-test3/Logger/Tests/LoggerTests/LoggerTests.swift new file mode 100644 index 0000000..2833518 --- /dev/null +++ b/TestAssets/transitive-project-test3/Logger/Tests/LoggerTests/LoggerTests.swift @@ -0,0 +1,11 @@ +import XCTest +@testable import Logger + +final class LoggerTests: XCTestCase { + func testExample() throws { + // This is an example of a functional test case. + // Use XCTAssert and related functions to verify your tests produce the correct + // results. + XCTAssertEqual(Logger().text, "Hello, World!") + } +} diff --git a/TestAssets/transitive-project-test3/LoggingApp/LoggingApp.xcodeproj/project.pbxproj b/TestAssets/transitive-project-test3/LoggingApp/LoggingApp.xcodeproj/project.pbxproj new file mode 100644 index 0000000..a623ca5 --- /dev/null +++ b/TestAssets/transitive-project-test3/LoggingApp/LoggingApp.xcodeproj/project.pbxproj @@ -0,0 +1,680 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 56; + objects = { + +/* Begin PBXBuildFile section */ + 04A3AE742A8D93DE000F8DCD /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04A3AE732A8D93DE000F8DCD /* AppDelegate.swift */; }; + 04A3AE762A8D93DE000F8DCD /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04A3AE752A8D93DE000F8DCD /* SceneDelegate.swift */; }; + 04A3AE782A8D93DE000F8DCD /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04A3AE772A8D93DE000F8DCD /* ViewController.swift */; }; + 04A3AE7B2A8D93DE000F8DCD /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 04A3AE792A8D93DE000F8DCD /* Main.storyboard */; }; + 04A3AE7D2A8D93DE000F8DCD /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 04A3AE7C2A8D93DE000F8DCD /* Assets.xcassets */; }; + 04A3AE802A8D93DE000F8DCD /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 04A3AE7E2A8D93DE000F8DCD /* LaunchScreen.storyboard */; }; + 04A3AE8B2A8D93DE000F8DCD /* LoggingAppTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04A3AE8A2A8D93DE000F8DCD /* LoggingAppTests.swift */; }; + 04A3AE952A8D93DF000F8DCD /* LoggingAppUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04A3AE942A8D93DF000F8DCD /* LoggingAppUITests.swift */; }; + 04A3AE972A8D93DF000F8DCD /* LoggingAppUITestsLaunchTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04A3AE962A8D93DF000F8DCD /* LoggingAppUITestsLaunchTests.swift */; }; + 04A3AF582A8D990F000F8DCD /* LoggingUtilities.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 04A3AF4F2A8D9777000F8DCD /* LoggingUtilities.framework */; }; + 04A3AF772A8D9A31000F8DCD /* DebugLogger.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 04A3AF722A8D994B000F8DCD /* DebugLogger.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 04A3AE872A8D93DE000F8DCD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 04A3AE682A8D93DE000F8DCD /* Project object */; + proxyType = 1; + remoteGlobalIDString = 04A3AE6F2A8D93DE000F8DCD; + remoteInfo = LoggingApp; + }; + 04A3AE912A8D93DF000F8DCD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 04A3AE682A8D93DE000F8DCD /* Project object */; + proxyType = 1; + remoteGlobalIDString = 04A3AE6F2A8D93DE000F8DCD; + remoteInfo = LoggingApp; + }; + 04A3AF4E2A8D9777000F8DCD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 04A3AF4A2A8D9777000F8DCD /* LoggingUtilities.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 04A3AF402A8D9777000F8DCD; + remoteInfo = LoggingUtilities; + }; + 04A3AF712A8D994B000F8DCD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 04A3AF6D2A8D994A000F8DCD /* DebugLogger.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 04A3AF632A8D994A000F8DCD; + remoteInfo = DebugLogger; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 04A3AE702A8D93DE000F8DCD /* LoggingApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = LoggingApp.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 04A3AE732A8D93DE000F8DCD /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 04A3AE752A8D93DE000F8DCD /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = ""; }; + 04A3AE772A8D93DE000F8DCD /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; + 04A3AE7A2A8D93DE000F8DCD /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + 04A3AE7C2A8D93DE000F8DCD /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + 04A3AE7F2A8D93DE000F8DCD /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + 04A3AE812A8D93DE000F8DCD /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 04A3AE862A8D93DE000F8DCD /* LoggingAppTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = LoggingAppTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 04A3AE8A2A8D93DE000F8DCD /* LoggingAppTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoggingAppTests.swift; sourceTree = ""; }; + 04A3AE902A8D93DF000F8DCD /* LoggingAppUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = LoggingAppUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 04A3AE942A8D93DF000F8DCD /* LoggingAppUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoggingAppUITests.swift; sourceTree = ""; }; + 04A3AE962A8D93DF000F8DCD /* LoggingAppUITestsLaunchTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoggingAppUITestsLaunchTests.swift; sourceTree = ""; }; + 04A3AF4A2A8D9777000F8DCD /* LoggingUtilities.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = LoggingUtilities.xcodeproj; path = ../LoggingUtilities/LoggingUtilities.xcodeproj; sourceTree = ""; }; + 04A3AF6D2A8D994A000F8DCD /* DebugLogger.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = DebugLogger.xcodeproj; path = ../DebugLogger/DebugLogger.xcodeproj; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 04A3AE6D2A8D93DE000F8DCD /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 04A3AF772A8D9A31000F8DCD /* DebugLogger.framework in Frameworks */, + 04A3AF582A8D990F000F8DCD /* LoggingUtilities.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04A3AE832A8D93DE000F8DCD /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04A3AE8D2A8D93DF000F8DCD /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 04A3AE672A8D93DE000F8DCD = { + isa = PBXGroup; + children = ( + 04A3AF6D2A8D994A000F8DCD /* DebugLogger.xcodeproj */, + 04A3AF4A2A8D9777000F8DCD /* LoggingUtilities.xcodeproj */, + 04A3AE722A8D93DE000F8DCD /* LoggingApp */, + 04A3AE892A8D93DE000F8DCD /* LoggingAppTests */, + 04A3AE932A8D93DF000F8DCD /* LoggingAppUITests */, + 04A3AE712A8D93DE000F8DCD /* Products */, + 04A3AF572A8D990F000F8DCD /* Frameworks */, + ); + sourceTree = ""; + }; + 04A3AE712A8D93DE000F8DCD /* Products */ = { + isa = PBXGroup; + children = ( + 04A3AE702A8D93DE000F8DCD /* LoggingApp.app */, + 04A3AE862A8D93DE000F8DCD /* LoggingAppTests.xctest */, + 04A3AE902A8D93DF000F8DCD /* LoggingAppUITests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 04A3AE722A8D93DE000F8DCD /* LoggingApp */ = { + isa = PBXGroup; + children = ( + 04A3AE732A8D93DE000F8DCD /* AppDelegate.swift */, + 04A3AE752A8D93DE000F8DCD /* SceneDelegate.swift */, + 04A3AE772A8D93DE000F8DCD /* ViewController.swift */, + 04A3AE792A8D93DE000F8DCD /* Main.storyboard */, + 04A3AE7C2A8D93DE000F8DCD /* Assets.xcassets */, + 04A3AE7E2A8D93DE000F8DCD /* LaunchScreen.storyboard */, + 04A3AE812A8D93DE000F8DCD /* Info.plist */, + ); + path = LoggingApp; + sourceTree = ""; + }; + 04A3AE892A8D93DE000F8DCD /* LoggingAppTests */ = { + isa = PBXGroup; + children = ( + 04A3AE8A2A8D93DE000F8DCD /* LoggingAppTests.swift */, + ); + path = LoggingAppTests; + sourceTree = ""; + }; + 04A3AE932A8D93DF000F8DCD /* LoggingAppUITests */ = { + isa = PBXGroup; + children = ( + 04A3AE942A8D93DF000F8DCD /* LoggingAppUITests.swift */, + 04A3AE962A8D93DF000F8DCD /* LoggingAppUITestsLaunchTests.swift */, + ); + path = LoggingAppUITests; + sourceTree = ""; + }; + 04A3AF4B2A8D9777000F8DCD /* Products */ = { + isa = PBXGroup; + children = ( + 04A3AF4F2A8D9777000F8DCD /* LoggingUtilities.framework */, + ); + name = Products; + sourceTree = ""; + }; + 04A3AF572A8D990F000F8DCD /* Frameworks */ = { + isa = PBXGroup; + children = ( + ); + name = Frameworks; + sourceTree = ""; + }; + 04A3AF6E2A8D994A000F8DCD /* Products */ = { + isa = PBXGroup; + children = ( + 04A3AF722A8D994B000F8DCD /* DebugLogger.framework */, + ); + name = Products; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 04A3AE6F2A8D93DE000F8DCD /* LoggingApp */ = { + isa = PBXNativeTarget; + buildConfigurationList = 04A3AE9A2A8D93DF000F8DCD /* Build configuration list for PBXNativeTarget "LoggingApp" */; + buildPhases = ( + 04A3AE6C2A8D93DE000F8DCD /* Sources */, + 04A3AE6D2A8D93DE000F8DCD /* Frameworks */, + 04A3AE6E2A8D93DE000F8DCD /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = LoggingApp; + productName = LoggingApp; + productReference = 04A3AE702A8D93DE000F8DCD /* LoggingApp.app */; + productType = "com.apple.product-type.application"; + }; + 04A3AE852A8D93DE000F8DCD /* LoggingAppTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 04A3AE9D2A8D93DF000F8DCD /* Build configuration list for PBXNativeTarget "LoggingAppTests" */; + buildPhases = ( + 04A3AE822A8D93DE000F8DCD /* Sources */, + 04A3AE832A8D93DE000F8DCD /* Frameworks */, + 04A3AE842A8D93DE000F8DCD /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 04A3AE882A8D93DE000F8DCD /* PBXTargetDependency */, + ); + name = LoggingAppTests; + productName = LoggingAppTests; + productReference = 04A3AE862A8D93DE000F8DCD /* LoggingAppTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + 04A3AE8F2A8D93DF000F8DCD /* LoggingAppUITests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 04A3AEA02A8D93DF000F8DCD /* Build configuration list for PBXNativeTarget "LoggingAppUITests" */; + buildPhases = ( + 04A3AE8C2A8D93DF000F8DCD /* Sources */, + 04A3AE8D2A8D93DF000F8DCD /* Frameworks */, + 04A3AE8E2A8D93DF000F8DCD /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 04A3AE922A8D93DF000F8DCD /* PBXTargetDependency */, + ); + name = LoggingAppUITests; + productName = LoggingAppUITests; + productReference = 04A3AE902A8D93DF000F8DCD /* LoggingAppUITests.xctest */; + productType = "com.apple.product-type.bundle.ui-testing"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 04A3AE682A8D93DE000F8DCD /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = 1; + LastSwiftUpdateCheck = 1430; + LastUpgradeCheck = 1430; + TargetAttributes = { + 04A3AE6F2A8D93DE000F8DCD = { + CreatedOnToolsVersion = 14.3.1; + }; + 04A3AE852A8D93DE000F8DCD = { + CreatedOnToolsVersion = 14.3.1; + TestTargetID = 04A3AE6F2A8D93DE000F8DCD; + }; + 04A3AE8F2A8D93DF000F8DCD = { + CreatedOnToolsVersion = 14.3.1; + TestTargetID = 04A3AE6F2A8D93DE000F8DCD; + }; + }; + }; + buildConfigurationList = 04A3AE6B2A8D93DE000F8DCD /* Build configuration list for PBXProject "LoggingApp" */; + compatibilityVersion = "Xcode 14.0"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 04A3AE672A8D93DE000F8DCD; + productRefGroup = 04A3AE712A8D93DE000F8DCD /* Products */; + projectDirPath = ""; + projectReferences = ( + { + ProductGroup = 04A3AF6E2A8D994A000F8DCD /* Products */; + ProjectRef = 04A3AF6D2A8D994A000F8DCD /* DebugLogger.xcodeproj */; + }, + { + ProductGroup = 04A3AF4B2A8D9777000F8DCD /* Products */; + ProjectRef = 04A3AF4A2A8D9777000F8DCD /* LoggingUtilities.xcodeproj */; + }, + ); + projectRoot = ""; + targets = ( + 04A3AE6F2A8D93DE000F8DCD /* LoggingApp */, + 04A3AE852A8D93DE000F8DCD /* LoggingAppTests */, + 04A3AE8F2A8D93DF000F8DCD /* LoggingAppUITests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXReferenceProxy section */ + 04A3AF4F2A8D9777000F8DCD /* LoggingUtilities.framework */ = { + isa = PBXReferenceProxy; + fileType = wrapper.framework; + path = LoggingUtilities.framework; + remoteRef = 04A3AF4E2A8D9777000F8DCD /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 04A3AF722A8D994B000F8DCD /* DebugLogger.framework */ = { + isa = PBXReferenceProxy; + fileType = wrapper.framework; + path = DebugLogger.framework; + remoteRef = 04A3AF712A8D994B000F8DCD /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; +/* End PBXReferenceProxy section */ + +/* Begin PBXResourcesBuildPhase section */ + 04A3AE6E2A8D93DE000F8DCD /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 04A3AE802A8D93DE000F8DCD /* LaunchScreen.storyboard in Resources */, + 04A3AE7D2A8D93DE000F8DCD /* Assets.xcassets in Resources */, + 04A3AE7B2A8D93DE000F8DCD /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04A3AE842A8D93DE000F8DCD /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04A3AE8E2A8D93DF000F8DCD /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 04A3AE6C2A8D93DE000F8DCD /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 04A3AE782A8D93DE000F8DCD /* ViewController.swift in Sources */, + 04A3AE742A8D93DE000F8DCD /* AppDelegate.swift in Sources */, + 04A3AE762A8D93DE000F8DCD /* SceneDelegate.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04A3AE822A8D93DE000F8DCD /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 04A3AE8B2A8D93DE000F8DCD /* LoggingAppTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 04A3AE8C2A8D93DF000F8DCD /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 04A3AE972A8D93DF000F8DCD /* LoggingAppUITestsLaunchTests.swift in Sources */, + 04A3AE952A8D93DF000F8DCD /* LoggingAppUITests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 04A3AE882A8D93DE000F8DCD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 04A3AE6F2A8D93DE000F8DCD /* LoggingApp */; + targetProxy = 04A3AE872A8D93DE000F8DCD /* PBXContainerItemProxy */; + }; + 04A3AE922A8D93DF000F8DCD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 04A3AE6F2A8D93DE000F8DCD /* LoggingApp */; + targetProxy = 04A3AE912A8D93DF000F8DCD /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 04A3AE792A8D93DE000F8DCD /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 04A3AE7A2A8D93DE000F8DCD /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; + 04A3AE7E2A8D93DE000F8DCD /* LaunchScreen.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 04A3AE7F2A8D93DE000F8DCD /* Base */, + ); + name = LaunchScreen.storyboard; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 04A3AE982A8D93DF000F8DCD /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + 04A3AE992A8D93DF000F8DCD /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 04A3AE9B2A8D93DF000F8DCD /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = LoggingApp/Info.plist; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen; + INFOPLIST_KEY_UIMainStoryboardFile = Main; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.LoggingApp; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 04A3AE9C2A8D93DF000F8DCD /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = LoggingApp/Info.plist; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen; + INFOPLIST_KEY_UIMainStoryboardFile = Main; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.LoggingApp; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; + 04A3AE9E2A8D93DF000F8DCD /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.LoggingAppTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/LoggingApp.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/LoggingApp"; + }; + name = Debug; + }; + 04A3AE9F2A8D93DF000F8DCD /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.LoggingAppTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/LoggingApp.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/LoggingApp"; + }; + name = Release; + }; + 04A3AEA12A8D93DF000F8DCD /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.LoggingAppUITests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_TARGET_NAME = LoggingApp; + }; + name = Debug; + }; + 04A3AEA22A8D93DF000F8DCD /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.LoggingAppUITests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_TARGET_NAME = LoggingApp; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 04A3AE6B2A8D93DE000F8DCD /* Build configuration list for PBXProject "LoggingApp" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04A3AE982A8D93DF000F8DCD /* Debug */, + 04A3AE992A8D93DF000F8DCD /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 04A3AE9A2A8D93DF000F8DCD /* Build configuration list for PBXNativeTarget "LoggingApp" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04A3AE9B2A8D93DF000F8DCD /* Debug */, + 04A3AE9C2A8D93DF000F8DCD /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 04A3AE9D2A8D93DF000F8DCD /* Build configuration list for PBXNativeTarget "LoggingAppTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04A3AE9E2A8D93DF000F8DCD /* Debug */, + 04A3AE9F2A8D93DF000F8DCD /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 04A3AEA02A8D93DF000F8DCD /* Build configuration list for PBXNativeTarget "LoggingAppUITests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04A3AEA12A8D93DF000F8DCD /* Debug */, + 04A3AEA22A8D93DF000F8DCD /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 04A3AE682A8D93DE000F8DCD /* Project object */; +} diff --git a/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/AppDelegate.swift b/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/AppDelegate.swift new file mode 100644 index 0000000..4267c4a --- /dev/null +++ b/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/AppDelegate.swift @@ -0,0 +1,36 @@ +// +// AppDelegate.swift +// LoggingApp +// +// Created by Jared Carlson on 8/16/23. +// + +import UIKit + +@main +class AppDelegate: UIResponder, UIApplicationDelegate { + + + + func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { + // Override point for customization after application launch. + return true + } + + // MARK: UISceneSession Lifecycle + + func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration { + // Called when a new scene session is being created. + // Use this method to select a configuration to create the new scene with. + return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role) + } + + func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set) { + // Called when the user discards a scene session. + // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions. + // Use this method to release any resources that were specific to the discarded scenes, as they will not return. + } + + +} + diff --git a/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Assets.xcassets/AccentColor.colorset/Contents.json b/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Assets.xcassets/AccentColor.colorset/Contents.json new file mode 100644 index 0000000..eb87897 --- /dev/null +++ b/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Assets.xcassets/AccentColor.colorset/Contents.json @@ -0,0 +1,11 @@ +{ + "colors" : [ + { + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Assets.xcassets/AppIcon.appiconset/Contents.json b/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..13613e3 --- /dev/null +++ b/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,13 @@ +{ + "images" : [ + { + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Assets.xcassets/Contents.json b/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Assets.xcassets/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Base.lproj/LaunchScreen.storyboard b/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 0000000..865e932 --- /dev/null +++ b/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Base.lproj/Main.storyboard b/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Base.lproj/Main.storyboard new file mode 100644 index 0000000..25a7638 --- /dev/null +++ b/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Base.lproj/Main.storyboard @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Info.plist b/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Info.plist new file mode 100644 index 0000000..dd3c9af --- /dev/null +++ b/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Info.plist @@ -0,0 +1,25 @@ + + + + + UIApplicationSceneManifest + + UIApplicationSupportsMultipleScenes + + UISceneConfigurations + + UIWindowSceneSessionRoleApplication + + + UISceneConfigurationName + Default Configuration + UISceneDelegateClassName + $(PRODUCT_MODULE_NAME).SceneDelegate + UISceneStoryboardFile + Main + + + + + + diff --git a/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/SceneDelegate.swift b/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/SceneDelegate.swift new file mode 100644 index 0000000..9c544bf --- /dev/null +++ b/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/SceneDelegate.swift @@ -0,0 +1,52 @@ +// +// SceneDelegate.swift +// LoggingApp +// +// Created by Jared Carlson on 8/16/23. +// + +import UIKit + +class SceneDelegate: UIResponder, UIWindowSceneDelegate { + + var window: UIWindow? + + + func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) { + // Use this method to optionally configure and attach the UIWindow `window` to the provided UIWindowScene `scene`. + // If using a storyboard, the `window` property will automatically be initialized and attached to the scene. + // This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead). + guard let _ = (scene as? UIWindowScene) else { return } + } + + func sceneDidDisconnect(_ scene: UIScene) { + // Called as the scene is being released by the system. + // This occurs shortly after the scene enters the background, or when its session is discarded. + // Release any resources associated with this scene that can be re-created the next time the scene connects. + // The scene may re-connect later, as its session was not necessarily discarded (see `application:didDiscardSceneSessions` instead). + } + + func sceneDidBecomeActive(_ scene: UIScene) { + // Called when the scene has moved from an inactive state to an active state. + // Use this method to restart any tasks that were paused (or not yet started) when the scene was inactive. + } + + func sceneWillResignActive(_ scene: UIScene) { + // Called when the scene will move from an active state to an inactive state. + // This may occur due to temporary interruptions (ex. an incoming phone call). + } + + func sceneWillEnterForeground(_ scene: UIScene) { + // Called as the scene transitions from the background to the foreground. + // Use this method to undo the changes made on entering the background. + } + + func sceneDidEnterBackground(_ scene: UIScene) { + // Called as the scene transitions from the foreground to the background. + // Use this method to save data, release shared resources, and store enough scene-specific state information + // to restore the scene back to its current state. + } + + +} + diff --git a/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/ViewController.swift b/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/ViewController.swift new file mode 100644 index 0000000..240da6f --- /dev/null +++ b/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/ViewController.swift @@ -0,0 +1,29 @@ +// +// ViewController.swift +// LoggingApp +// +// Created by Jared Carlson on 8/16/23. +// + +import UIKit +import LoggingUtilities +import DebugLogger + +class ViewController: UIViewController { + + override func viewDidLoad() { + super.viewDidLoad() + // Do any additional setup after loading the view. + + + } + + override func viewWillAppear(_ animated: Bool) { + super.viewWillAppear(animated) + + + } + + +} + diff --git a/TestAssets/transitive-project-test3/LoggingApp/LoggingAppTests/LoggingAppTests.swift b/TestAssets/transitive-project-test3/LoggingApp/LoggingAppTests/LoggingAppTests.swift new file mode 100644 index 0000000..2ee7865 --- /dev/null +++ b/TestAssets/transitive-project-test3/LoggingApp/LoggingAppTests/LoggingAppTests.swift @@ -0,0 +1,36 @@ +// +// LoggingAppTests.swift +// LoggingAppTests +// +// Created by Jared Carlson on 8/16/23. +// + +import XCTest +@testable import LoggingApp + +final class LoggingAppTests: XCTestCase { + + override func setUpWithError() throws { + // Put setup code here. This method is called before the invocation of each test method in the class. + } + + override func tearDownWithError() throws { + // Put teardown code here. This method is called after the invocation of each test method in the class. + } + + func testExample() throws { + // This is an example of a functional test case. + // Use XCTAssert and related functions to verify your tests produce the correct results. + // Any test you write for XCTest can be annotated as throws and async. + // Mark your test throws to produce an unexpected failure when your test encounters an uncaught error. + // Mark your test async to allow awaiting for asynchronous code to complete. Check the results with assertions afterwards. + } + + func testPerformanceExample() throws { + // This is an example of a performance test case. + self.measure { + // Put the code you want to measure the time of here. + } + } + +} diff --git a/TestAssets/transitive-project-test3/LoggingApp/LoggingAppUITests/LoggingAppUITests.swift b/TestAssets/transitive-project-test3/LoggingApp/LoggingAppUITests/LoggingAppUITests.swift new file mode 100644 index 0000000..38389dd --- /dev/null +++ b/TestAssets/transitive-project-test3/LoggingApp/LoggingAppUITests/LoggingAppUITests.swift @@ -0,0 +1,41 @@ +// +// LoggingAppUITests.swift +// LoggingAppUITests +// +// Created by Jared Carlson on 8/16/23. +// + +import XCTest + +final class LoggingAppUITests: XCTestCase { + + override func setUpWithError() throws { + // Put setup code here. This method is called before the invocation of each test method in the class. + + // In UI tests it is usually best to stop immediately when a failure occurs. + continueAfterFailure = false + + // In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this. + } + + override func tearDownWithError() throws { + // Put teardown code here. This method is called after the invocation of each test method in the class. + } + + func testExample() throws { + // UI tests must launch the application that they test. + let app = XCUIApplication() + app.launch() + + // Use XCTAssert and related functions to verify your tests produce the correct results. + } + + func testLaunchPerformance() throws { + if #available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 7.0, *) { + // This measures how long it takes to launch your application. + measure(metrics: [XCTApplicationLaunchMetric()]) { + XCUIApplication().launch() + } + } + } +} diff --git a/TestAssets/transitive-project-test3/LoggingApp/LoggingAppUITests/LoggingAppUITestsLaunchTests.swift b/TestAssets/transitive-project-test3/LoggingApp/LoggingAppUITests/LoggingAppUITestsLaunchTests.swift new file mode 100644 index 0000000..fa3193d --- /dev/null +++ b/TestAssets/transitive-project-test3/LoggingApp/LoggingAppUITests/LoggingAppUITestsLaunchTests.swift @@ -0,0 +1,32 @@ +// +// LoggingAppUITestsLaunchTests.swift +// LoggingAppUITests +// +// Created by Jared Carlson on 8/16/23. +// + +import XCTest + +final class LoggingAppUITestsLaunchTests: XCTestCase { + + override class var runsForEachTargetApplicationUIConfiguration: Bool { + true + } + + override func setUpWithError() throws { + continueAfterFailure = false + } + + func testLaunch() throws { + let app = XCUIApplication() + app.launch() + + // Insert steps here to perform after app launch but before taking a screenshot, + // such as logging into a test account or navigating somewhere in the app + + let attachment = XCTAttachment(screenshot: app.screenshot()) + attachment.name = "Launch Screen" + attachment.lifetime = .keepAlways + add(attachment) + } +} diff --git a/TestAssets/transitive-project-test3/LoggingUtilities/LoggingUtilities.xcodeproj/project.pbxproj b/TestAssets/transitive-project-test3/LoggingUtilities/LoggingUtilities.xcodeproj/project.pbxproj new file mode 100644 index 0000000..5796237 --- /dev/null +++ b/TestAssets/transitive-project-test3/LoggingUtilities/LoggingUtilities.xcodeproj/project.pbxproj @@ -0,0 +1,382 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 56; + objects = { + +/* Begin PBXBuildFile section */ + 04A3AF442A8D9777000F8DCD /* LoggingUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 04A3AF432A8D9777000F8DCD /* LoggingUtilities.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 04A3AF512A8D978F000F8DCD /* Utilities.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04A3AF502A8D978F000F8DCD /* Utilities.swift */; }; + 04A3AF562A8D9881000F8DCD /* Logger in Frameworks */ = {isa = PBXBuildFile; productRef = 04A3AF552A8D9881000F8DCD /* Logger */; }; +/* End PBXBuildFile section */ + +/* Begin PBXFileReference section */ + 04A3AF402A8D9777000F8DCD /* LoggingUtilities.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = LoggingUtilities.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 04A3AF432A8D9777000F8DCD /* LoggingUtilities.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LoggingUtilities.h; sourceTree = ""; }; + 04A3AF502A8D978F000F8DCD /* Utilities.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Utilities.swift; sourceTree = ""; }; + 04A3AF532A8D97A2000F8DCD /* Logger */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = Logger; path = ../Logger; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 04A3AF3D2A8D9777000F8DCD /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 04A3AF562A8D9881000F8DCD /* Logger in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 04A3AF362A8D9777000F8DCD = { + isa = PBXGroup; + children = ( + 04A3AF522A8D97A2000F8DCD /* Packages */, + 04A3AF422A8D9777000F8DCD /* LoggingUtilities */, + 04A3AF412A8D9777000F8DCD /* Products */, + 04A3AF542A8D9881000F8DCD /* Frameworks */, + ); + sourceTree = ""; + }; + 04A3AF412A8D9777000F8DCD /* Products */ = { + isa = PBXGroup; + children = ( + 04A3AF402A8D9777000F8DCD /* LoggingUtilities.framework */, + ); + name = Products; + sourceTree = ""; + }; + 04A3AF422A8D9777000F8DCD /* LoggingUtilities */ = { + isa = PBXGroup; + children = ( + 04A3AF432A8D9777000F8DCD /* LoggingUtilities.h */, + 04A3AF502A8D978F000F8DCD /* Utilities.swift */, + ); + path = LoggingUtilities; + sourceTree = ""; + }; + 04A3AF522A8D97A2000F8DCD /* Packages */ = { + isa = PBXGroup; + children = ( + 04A3AF532A8D97A2000F8DCD /* Logger */, + ); + name = Packages; + sourceTree = ""; + }; + 04A3AF542A8D9881000F8DCD /* Frameworks */ = { + isa = PBXGroup; + children = ( + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + 04A3AF3B2A8D9777000F8DCD /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 04A3AF442A8D9777000F8DCD /* LoggingUtilities.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + 04A3AF3F2A8D9777000F8DCD /* LoggingUtilities */ = { + isa = PBXNativeTarget; + buildConfigurationList = 04A3AF472A8D9777000F8DCD /* Build configuration list for PBXNativeTarget "LoggingUtilities" */; + buildPhases = ( + 04A3AF3B2A8D9777000F8DCD /* Headers */, + 04A3AF3C2A8D9777000F8DCD /* Sources */, + 04A3AF3D2A8D9777000F8DCD /* Frameworks */, + 04A3AF3E2A8D9777000F8DCD /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = LoggingUtilities; + packageProductDependencies = ( + 04A3AF552A8D9881000F8DCD /* Logger */, + ); + productName = LoggingUtilities; + productReference = 04A3AF402A8D9777000F8DCD /* LoggingUtilities.framework */; + productType = "com.apple.product-type.framework"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 04A3AF372A8D9777000F8DCD /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = 1; + LastUpgradeCheck = 1430; + TargetAttributes = { + 04A3AF3F2A8D9777000F8DCD = { + CreatedOnToolsVersion = 14.3.1; + LastSwiftMigration = 1430; + }; + }; + }; + buildConfigurationList = 04A3AF3A2A8D9777000F8DCD /* Build configuration list for PBXProject "LoggingUtilities" */; + compatibilityVersion = "Xcode 14.0"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 04A3AF362A8D9777000F8DCD; + productRefGroup = 04A3AF412A8D9777000F8DCD /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 04A3AF3F2A8D9777000F8DCD /* LoggingUtilities */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 04A3AF3E2A8D9777000F8DCD /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 04A3AF3C2A8D9777000F8DCD /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 04A3AF512A8D978F000F8DCD /* Utilities.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin XCBuildConfiguration section */ + 04A3AF452A8D9777000F8DCD /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 04A3AF462A8D9777000F8DCD /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.4; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 04A3AF482A8D9777000F8DCD /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_KEY_NSHumanReadableCopyright = ""; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; + MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++20"; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.LoggingUtilities; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 04A3AF492A8D9777000F8DCD /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DEVELOPMENT_TEAM = Q7YBK8CJUP; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_KEY_NSHumanReadableCopyright = ""; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; + MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++20"; + PRODUCT_BUNDLE_IDENTIFIER = com.gototheboard.LoggingUtilities; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 04A3AF3A2A8D9777000F8DCD /* Build configuration list for PBXProject "LoggingUtilities" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04A3AF452A8D9777000F8DCD /* Debug */, + 04A3AF462A8D9777000F8DCD /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 04A3AF472A8D9777000F8DCD /* Build configuration list for PBXNativeTarget "LoggingUtilities" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04A3AF482A8D9777000F8DCD /* Debug */, + 04A3AF492A8D9777000F8DCD /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + +/* Begin XCSwiftPackageProductDependency section */ + 04A3AF552A8D9881000F8DCD /* Logger */ = { + isa = XCSwiftPackageProductDependency; + productName = Logger; + }; +/* End XCSwiftPackageProductDependency section */ + }; + rootObject = 04A3AF372A8D9777000F8DCD /* Project object */; +} diff --git a/TestAssets/transitive-project-test3/LoggingUtilities/LoggingUtilities/LoggingUtilities.h b/TestAssets/transitive-project-test3/LoggingUtilities/LoggingUtilities/LoggingUtilities.h new file mode 100644 index 0000000..8cf42eb --- /dev/null +++ b/TestAssets/transitive-project-test3/LoggingUtilities/LoggingUtilities/LoggingUtilities.h @@ -0,0 +1,18 @@ +// +// LoggingUtilities.h +// LoggingUtilities +// +// Created by Jared Carlson on 8/16/23. +// + +#import + +//! Project version number for LoggingUtilities. +FOUNDATION_EXPORT double LoggingUtilitiesVersionNumber; + +//! Project version string for LoggingUtilities. +FOUNDATION_EXPORT const unsigned char LoggingUtilitiesVersionString[]; + +// In this header, you should import all the public headers of your framework using statements like #import + + diff --git a/TestAssets/transitive-project-test3/LoggingUtilities/LoggingUtilities/Utilities.swift b/TestAssets/transitive-project-test3/LoggingUtilities/LoggingUtilities/Utilities.swift new file mode 100644 index 0000000..9f61ad0 --- /dev/null +++ b/TestAssets/transitive-project-test3/LoggingUtilities/LoggingUtilities/Utilities.swift @@ -0,0 +1,24 @@ +// +// Utilities.swift +// LoggingUtilities +// +// Created by Jared Carlson on 8/16/23. +// + +import Foundation +import Logger + +struct LogWriter { + + var level:String + let logger:Logger + + public init(level:String) { + self.level = level + self.logger = Logger() + } + + public func log(msg:String) { + self.logger.log(msg: msg) + } +} diff --git a/TestAssets/transitive-project-test3/note.md b/TestAssets/transitive-project-test3/note.md new file mode 100644 index 0000000..370ea68 --- /dev/null +++ b/TestAssets/transitive-project-test3/note.md @@ -0,0 +1,5 @@ +Reading this: https://developer.apple.com/forums/thread/123294 + +Gave me an idea, that maybe the underlying issue is that they have dependencies that overlap? In other words, it's listed in two trees, and that is +causing some confusion? It's certainly the kind of thing that could happen.. Anyway, that's the basis for this test. + diff --git a/TestAssets/transitive-project-test3/note.md~ b/TestAssets/transitive-project-test3/note.md~ new file mode 100644 index 0000000..e69de29 From 8d07dba5e5259ee62013a49a9f581308fe4e755e Mon Sep 17 00:00:00 2001 From: Jared Carlson Date: Thu, 17 Aug 2023 17:52:30 -0400 Subject: [PATCH 3/3] build log and archive for that test case --- ...Archive LoggingApp_2023-08-17T17-50-52.txt | 741 ++++++++++++++++++ 1 file changed, 741 insertions(+) create mode 100644 TestAssets/transitive-project-test3/Archive LoggingApp_2023-08-17T17-50-52.txt diff --git a/TestAssets/transitive-project-test3/Archive LoggingApp_2023-08-17T17-50-52.txt b/TestAssets/transitive-project-test3/Archive LoggingApp_2023-08-17T17-50-52.txt new file mode 100644 index 0000000..0e0b80b --- /dev/null +++ b/TestAssets/transitive-project-test3/Archive LoggingApp_2023-08-17T17-50-52.txt @@ -0,0 +1,741 @@ + +Showing All Messages + +Prepare build +note: Building targets in dependency order + + +Building targets in dependency order + +Computing target dependency graph and provisioning inputs + +Create build description +Build description signature: f46121ebc44d95ee34b98876b3663551 +Build description path: /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/XCBuildData/f46121ebc44d95ee34b98876b3663551.xcbuilddata + +CreateBuildDirectory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3 + builtin-create-build-directory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation + +CreateBuildDirectory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3 + builtin-create-build-directory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath + +CreateBuildDirectory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3 + builtin-create-build-directory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath + +ClangStatCache /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3 + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache + +CreateBuildDirectory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3 + builtin-create-build-directory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos + +CreateBuildDirectory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/EagerLinkingTBDs/Release-iphoneos + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3 + builtin-create-build-directory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/EagerLinkingTBDs/Release-iphoneos + +CreateBuildDirectory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/PackageFrameworks + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3 + builtin-create-build-directory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/PackageFrameworks + + +Build target Logger with configuration Release + +SymLink /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/Logger.o ../../IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Logger.o (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + /bin/ln -sfh ../../IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Logger.o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/Logger.o + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Logger.modulemap (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Logger.modulemap + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/GeneratedModuleMaps-iphoneos/Logger.modulemap /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Logger.modulemap (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-debug-symbols -strip-deterministic -strip-tool /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Logger.modulemap /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/GeneratedModuleMaps-iphoneos + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger.LinkFileList (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger.LinkFileList + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger-OutputFileMap.json (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger-OutputFileMap.json + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger.SwiftFileList (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger.SwiftFileList + +SwiftDriver Logger normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + builtin-SwiftDriver -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Logger -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger.SwiftFileList -DSWIFT_PACKAGE -DXcode -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -target arm64-apple-ios11.0 -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -swift-version 5 -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -I /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk/Developer/Library/Frameworks -parse-as-library -c -num-threads 10 -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger.swiftmodule -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/swift-overrides.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/DerivedSources -Xcc -DSWIFT_PACKAGE -emit-objc-header -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger-Swift.h -working-directory /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger -no-emit-module-separately-wmo + +SwiftDriver\ Compilation Logger normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + builtin-Swift-Compilation -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Logger -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger.SwiftFileList -DSWIFT_PACKAGE -DXcode -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -target arm64-apple-ios11.0 -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -swift-version 5 -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -I /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk/Developer/Library/Frameworks -parse-as-library -c -num-threads 10 -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger.swiftmodule -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/swift-overrides.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/DerivedSources -Xcc -DSWIFT_PACKAGE -emit-objc-header -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger-Swift.h -working-directory /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger -no-emit-module-separately-wmo + +SwiftCompile normal arm64 Compiling\ Logger.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger/Sources/Logger/Logger.swift (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + builtin-swiftTaskExecution -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger/Sources/Logger/Logger.swift -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger.swiftmodule -emit-module-doc-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger.swiftdoc -emit-module-source-info-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger.swiftsourceinfo -emit-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger-master.d -serialize-diagnostics-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger-master.dia -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger-Swift.h -emit-abi-descriptor-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger.abi.json -target arm64-apple-ios11.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -I /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -O -D SWIFT_PACKAGE -D Xcode -serialize-debugging-options -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/swift-overrides.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/DerivedSources -Xcc -DSWIFT_PACKAGE -module-name Logger -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.4 -target-sdk-name iphoneos16.4 -enable-default-cmo -parse-as-library -num-threads 10 -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger.o -index-unit-output-path /Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger.o + +SwiftCompile normal arm64 /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger/Sources/Logger/Logger.swift (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger/Sources/Logger/Logger.swift -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger.swiftmodule -emit-module-doc-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger.swiftdoc -emit-module-source-info-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger.swiftsourceinfo -emit-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger-master.d -serialize-diagnostics-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger-master.dia -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger-Swift.h -emit-abi-descriptor-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger.abi.json -target arm64-apple-ios11.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -I /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -O -D SWIFT_PACKAGE -D Xcode -serialize-debugging-options -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/swift-overrides.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/DerivedSources -Xcc -DSWIFT_PACKAGE -module-name Logger -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.4 -target-sdk-name iphoneos16.4 -enable-default-cmo -parse-as-library -num-threads 10 -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger.o -index-unit-output-path /Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger.o + +SwiftDriverJobDiscovery normal arm64 Compiling Logger.swift (in target 'Logger' from project 'Logger') + +SwiftDriver\ Compilation\ Requirements Logger normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + builtin-Swift-Compilation-Requirements -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Logger -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger.SwiftFileList -DSWIFT_PACKAGE -DXcode -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -target arm64-apple-ios11.0 -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -swift-version 5 -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -I /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk/Developer/Library/Frameworks -parse-as-library -c -num-threads 10 -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger.swiftmodule -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/swift-overrides.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/DerivedSources -Xcc -DSWIFT_PACKAGE -emit-objc-header -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger-Swift.h -working-directory /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger -no-emit-module-separately-wmo + +SwiftMergeGeneratedHeaders /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/GeneratedModuleMaps-iphoneos/Logger-Swift.h /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger-Swift.h (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + builtin-swiftHeaderTool -arch arm64 /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger-Swift.h -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/GeneratedModuleMaps-iphoneos/Logger-Swift.h + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/Logger.swiftmodule/arm64-apple-ios.swiftdoc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger.swiftdoc (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-debug-symbols -strip-deterministic -strip-tool /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks -rename /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger.swiftdoc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/Logger.swiftmodule/arm64-apple-ios.swiftdoc + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/Logger.swiftmodule/arm64-apple-ios.abi.json /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger.abi.json (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-debug-symbols -strip-deterministic -strip-tool /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks -rename /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger.abi.json /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/Logger.swiftmodule/arm64-apple-ios.abi.json + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/Logger.swiftmodule/arm64-apple-ios.swiftmodule /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger.swiftmodule (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-debug-symbols -strip-deterministic -strip-tool /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks -rename /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger.swiftmodule /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/Logger.swiftmodule/arm64-apple-ios.swiftmodule + +Ld /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Logger.o normal (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios11.0 -r -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -L/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/EagerLinkingTBDs/Release-iphoneos -L/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/EagerLinkingTBDs/Release-iphoneos -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -F/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk/Developer/Library/Frameworks -filelist /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger_lto.o -fobjc-link-runtime -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger.swiftmodule -Xlinker -dependency_info -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger_dependency_info.dat -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Logger.o + +SetOwnerAndGroup jaredcarlson:staff /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Logger.o (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + /usr/sbin/chown -RH jaredcarlson:staff /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Logger.o + +SetMode u+w,go-w,a+rX /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Logger.o (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + /bin/chmod -RH u+w,go-w,a+rX /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Logger.o + +RegisterExecutionPolicyException /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Logger.o (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + builtin-RegisterExecutionPolicyException /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Logger.o + + +Build target Logger with configuration Release + +SymLink /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/Logger_19F76B3DFF5FE6_PackageProduct.framework ../../IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Logger_19F76B3DFF5FE6_PackageProduct.framework (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + /bin/ln -sfh ../../IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Logger_19F76B3DFF5FE6_PackageProduct.framework /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/Logger_19F76B3DFF5FE6_PackageProduct.framework + +MkDir /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Logger_19F76B3DFF5FE6_PackageProduct.framework (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + /bin/mkdir -p /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Logger_19F76B3DFF5FE6_PackageProduct.framework + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger\ product.build/empty-Logger_19F76B3DFF5FE6_PackageProduct.plist (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger\ product.build/empty-Logger_19F76B3DFF5FE6_PackageProduct.plist + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger\ product.build/Objects-normal/arm64/Logger_19F76B3DFF5FE6_PackageProduct.LinkFileList (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger\ product.build/Objects-normal/arm64/Logger_19F76B3DFF5FE6_PackageProduct.LinkFileList + +ProcessInfoPlistFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Logger_19F76B3DFF5FE6_PackageProduct.framework/Info.plist /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger\ product.build/empty-Logger_19F76B3DFF5FE6_PackageProduct.plist (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + builtin-infoPlistUtility /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger\ product.build/empty-Logger_19F76B3DFF5FE6_PackageProduct.plist -producttype com.apple.product-type.framework -expandbuildsettings -format binary -platform iphoneos -requiredArchitecture arm64 -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Logger_19F76B3DFF5FE6_PackageProduct.framework/Info.plist + +Ld /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Logger_19F76B3DFF5FE6_PackageProduct.framework/Logger_19F76B3DFF5FE6_PackageProduct normal (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios11.0 -dynamiclib -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -L/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/EagerLinkingTBDs/Release-iphoneos -L/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/EagerLinkingTBDs/Release-iphoneos -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/PackageFrameworks -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -F/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk/Developer/Library/Frameworks -filelist /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger\ product.build/Objects-normal/arm64/Logger_19F76B3DFF5FE6_PackageProduct.LinkFileList -install_name @rpath/Logger_19F76B3DFF5FE6_PackageProduct.framework/Logger_19F76B3DFF5FE6_PackageProduct -Xlinker -rpath -Xlinker /usr/lib/swift -dead_strip -Xlinker -object_path_lto -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger\ product.build/Objects-normal/arm64/Logger_19F76B3DFF5FE6_PackageProduct_lto.o -fobjc-link-runtime -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -dependency_info -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger\ product.build/Objects-normal/arm64/Logger_19F76B3DFF5FE6_PackageProduct_dependency_info.dat -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Logger_19F76B3DFF5FE6_PackageProduct.framework/Logger_19F76B3DFF5FE6_PackageProduct -Xlinker -add_ast_path -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/Logger.build/Release-iphoneos/Logger.build/Objects-normal/arm64/Logger.swiftmodule + +GenerateDSYMFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/Logger_19F76B3DFF5FE6_PackageProduct.framework.dSYM /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Logger_19F76B3DFF5FE6_PackageProduct.framework/Logger_19F76B3DFF5FE6_PackageProduct (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Logger_19F76B3DFF5FE6_PackageProduct.framework/Logger_19F76B3DFF5FE6_PackageProduct -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/Logger_19F76B3DFF5FE6_PackageProduct.framework.dSYM + +GenerateTAPI /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/EagerLinkingTBDs/Release-iphoneos/Logger_19F76B3DFF5FE6_PackageProduct.framework/Logger_19F76B3DFF5FE6_PackageProduct.tbd (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/tapi stubify -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/PackageFrameworks -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -F/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk/Developer/Library/Frameworks -L/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Logger_19F76B3DFF5FE6_PackageProduct.framework/Logger_19F76B3DFF5FE6_PackageProduct -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/EagerLinkingTBDs/Release-iphoneos/Logger_19F76B3DFF5FE6_PackageProduct.framework/Logger_19F76B3DFF5FE6_PackageProduct.tbd + +Strip /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Logger_19F76B3DFF5FE6_PackageProduct.framework/Logger_19F76B3DFF5FE6_PackageProduct (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -D -S -T /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Logger_19F76B3DFF5FE6_PackageProduct.framework/Logger_19F76B3DFF5FE6_PackageProduct + +SetOwnerAndGroup jaredcarlson:staff /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Logger_19F76B3DFF5FE6_PackageProduct.framework (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + /usr/sbin/chown -RH jaredcarlson:staff /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Logger_19F76B3DFF5FE6_PackageProduct.framework + +SetMode u+w,go-w,a+rX /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Logger_19F76B3DFF5FE6_PackageProduct.framework (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + /bin/chmod -RH u+w,go-w,a+rX /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Logger_19F76B3DFF5FE6_PackageProduct.framework + +RegisterExecutionPolicyException /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Logger_19F76B3DFF5FE6_PackageProduct.framework (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + builtin-RegisterExecutionPolicyException /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Logger_19F76B3DFF5FE6_PackageProduct.framework + +Touch /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Logger_19F76B3DFF5FE6_PackageProduct.framework (in target 'Logger' from project 'Logger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/Logger + /usr/bin/touch -c /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Logger_19F76B3DFF5FE6_PackageProduct.framework + + +Build target DebugLogger of project DebugLogger with configuration Release + +MkDir /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + /bin/mkdir -p /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework + +SymLink /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/DebugLogger.framework ../../IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + /bin/ln -sfh ../../IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/DebugLogger.framework + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-diagnostic-filename-map.json (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-diagnostic-filename-map.json + +MkDir /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework/Headers (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + /bin/mkdir -p /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework/Headers + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger.hmap (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-project-headers.hmap (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-project-headers.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/all-product-headers.yaml (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/all-product-headers.yaml + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-own-target-headers.hmap (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-own-target-headers.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-generated-files.hmap (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-generated-files.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-all-target-headers.hmap (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-all-target-headers.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-all-non-framework-target-headers.hmap (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-all-non-framework-target-headers.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/unextended-module.modulemap (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/unextended-module.modulemap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/unextended-module-overlay.yaml (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/unextended-module-overlay.yaml + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/module.modulemap (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/module.modulemap + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework/Modules/module.modulemap /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/module.modulemap (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/module.modulemap /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework/Modules + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/empty-DebugLogger.plist (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/empty-DebugLogger.plist + +CpHeader /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework/Headers/DebugLogger.h /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger/DebugLogger/DebugLogger.h (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger/DebugLogger/DebugLogger.h /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework/Headers + +ProcessInfoPlistFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework/Info.plist /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/empty-DebugLogger.plist (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + builtin-infoPlistUtility /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/empty-DebugLogger.plist -producttype com.apple.product-type.framework -expandbuildsettings -format binary -platform iphoneos -requiredArchitecture arm64 -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework/Info.plist + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DerivedSources/DebugLogger_vers.c (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DerivedSources/DebugLogger_vers.c + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger.LinkFileList (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger.LinkFileList + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger-OutputFileMap.json (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger-OutputFileMap.json + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger.SwiftFileList (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger.SwiftFileList + +SwiftDriver DebugLogger normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + builtin-SwiftDriver -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name DebugLogger -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger.SwiftFileList -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -target arm64-apple-ios16.4 -enable-bare-slash-regex -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -swift-version 5 -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -parse-as-library -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64 -c -num-threads 10 -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger.swiftmodule -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DerivedSources -emit-objc-header -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger-Swift.h -import-underlying-module -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/unextended-module-overlay.yaml -working-directory /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger -no-emit-module-separately-wmo + +SwiftDriver\ Compilation DebugLogger normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + builtin-Swift-Compilation -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name DebugLogger -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger.SwiftFileList -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -target arm64-apple-ios16.4 -enable-bare-slash-regex -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -swift-version 5 -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -parse-as-library -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64 -c -num-threads 10 -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger.swiftmodule -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DerivedSources -emit-objc-header -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger-Swift.h -import-underlying-module -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/unextended-module-overlay.yaml -working-directory /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger -no-emit-module-separately-wmo + +SwiftCompile normal arm64 Compiling\ DebugLogger.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger/DebugLogger/DebugLogger.swift (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + builtin-swiftTaskExecution -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger/DebugLogger/DebugLogger.swift -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger.swiftmodule -emit-module-doc-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger.swiftdoc -emit-module-source-info-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger.swiftsourceinfo -emit-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger-master.d -serialize-diagnostics-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger-master.dia -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger-Swift.h -emit-abi-descriptor-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger.abi.json -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64 -target arm64-apple-ios16.4 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -no-color-diagnostics -g -import-underlying-module -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -O -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DerivedSources -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/unextended-module-overlay.yaml -module-name DebugLogger -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.4 -target-sdk-name iphoneos16.4 -enable-default-cmo -parse-as-library -num-threads 10 -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger.o -index-unit-output-path /DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger.o + +SwiftCompile normal arm64 /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger/DebugLogger/DebugLogger.swift (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger/DebugLogger/DebugLogger.swift -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger.swiftmodule -emit-module-doc-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger.swiftdoc -emit-module-source-info-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger.swiftsourceinfo -emit-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger-master.d -serialize-diagnostics-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger-master.dia -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger-Swift.h -emit-abi-descriptor-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger.abi.json -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64 -target arm64-apple-ios16.4 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -no-color-diagnostics -g -import-underlying-module -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -O -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DerivedSources -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/unextended-module-overlay.yaml -module-name DebugLogger -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.4 -target-sdk-name iphoneos16.4 -enable-default-cmo -parse-as-library -num-threads 10 -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger.o -index-unit-output-path /DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger.o + +SwiftDriverJobDiscovery normal arm64 Compiling DebugLogger.swift (in target 'DebugLogger' from project 'DebugLogger') + +SwiftDriver\ Compilation\ Requirements DebugLogger normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + builtin-Swift-Compilation-Requirements -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name DebugLogger -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger.SwiftFileList -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -target arm64-apple-ios16.4 -enable-bare-slash-regex -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -swift-version 5 -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -parse-as-library -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64 -c -num-threads 10 -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger.swiftmodule -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DerivedSources -emit-objc-header -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger-Swift.h -import-underlying-module -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/unextended-module-overlay.yaml -working-directory /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger -no-emit-module-separately-wmo + +SwiftMergeGeneratedHeaders /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework/Headers/DebugLogger-Swift.h /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger-Swift.h (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + builtin-swiftHeaderTool -arch arm64 /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger-Swift.h -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework/Headers/DebugLogger-Swift.h + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework/Modules/DebugLogger.swiftmodule/arm64-apple-ios.swiftmodule /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger.swiftmodule (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger.swiftmodule /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework/Modules/DebugLogger.swiftmodule/arm64-apple-ios.swiftmodule + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework/Modules/DebugLogger.swiftmodule/arm64-apple-ios.abi.json /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger.abi.json (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger.abi.json /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework/Modules/DebugLogger.swiftmodule/arm64-apple-ios.abi.json + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework/Modules/DebugLogger.swiftmodule/arm64-apple-ios.swiftdoc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger.swiftdoc (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger.swiftdoc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework/Modules/DebugLogger.swiftmodule/arm64-apple-ios.swiftdoc + +VerifyModule /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/DebugLogger.framework (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/modules-verifier /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/DebugLogger.framework --clang /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang --diagnostic-filename-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-diagnostic-filename-map.json --sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk --intermediates-directory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/VerifyModule --target arm64-apple-ios16.4 --language objective-c --language objective-c++ --standard gnu11 --standard gnu++20 + +CompileC /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger_vers.o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DerivedSources/DebugLogger_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -target arm64-apple-ios16.4 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu11 -fmodules -gmodules -fmodules-cache-path\=/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/jaredcarlson/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 -fmodule-name\=DebugLogger -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Wquoted-include-in-framework-header -Werror\=deprecated-objc-isa-usage -Werror\=objc-root-class -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 -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -fstrict-aliasing -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -iquote /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-generated-files.hmap -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-own-target-headers.hmap -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-all-non-framework-target-headers.hmap -ivfsoverlay /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/all-product-headers.yaml -iquote /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DebugLogger-project-headers.hmap -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/include -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DerivedSources-normal/arm64 -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DerivedSources/arm64 -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DerivedSources -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/PackageFrameworks -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -fmodule-map-file\=/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/GeneratedModuleMaps-iphoneos/Logger.modulemap -MMD -MT dependencies -MF /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger_vers.d --serialize-diagnostics /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger_vers.dia -c /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/DerivedSources/DebugLogger_vers.c -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger_vers.o + +Ld /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework/DebugLogger normal (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios16.4 -dynamiclib -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -L/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/EagerLinkingTBDs/Release-iphoneos -L/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/EagerLinkingTBDs/Release-iphoneos -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/PackageFrameworks -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -filelist /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger.LinkFileList -install_name @rpath/DebugLogger.framework/DebugLogger -Xlinker -rpath -Xlinker @executable_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger_lto.o -fobjc-link-runtime -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger.swiftmodule /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/Logger_19F76B3DFF5FE6_PackageProduct.framework/Logger_19F76B3DFF5FE6_PackageProduct -Xlinker -no_adhoc_codesign -compatibility_version 1 -current_version 1 -Xlinker -dependency_info -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger_dependency_info.dat -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework/DebugLogger + +GenerateDSYMFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/DebugLogger.framework.dSYM /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework/DebugLogger (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework/DebugLogger -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/DebugLogger.framework.dSYM + +ExtractAppIntentsMetadata (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + /Applications/Xcode.app/Contents/Developer/usr/bin/appintentsmetadataprocessor --output /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework --toolchain-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name DebugLogger --sdk-root /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk --target-triple arm64-apple-ios16.4 --source-files /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger/DebugLogger/DebugLogger.swift --binary-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework/DebugLogger --dependency-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/DebugLogger_dependency_info.dat --stringsdata-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/DebugLogger.build/Release-iphoneos/DebugLogger.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata + +note: Metadata extraction skipped. No AppIntents.framework dependency found. (in target 'DebugLogger' from project 'DebugLogger') + +Metadata extraction skipped. No AppIntents.framework dependency found. + +GenerateTAPI /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/EagerLinkingTBDs/Release-iphoneos/DebugLogger.framework/DebugLogger.tbd (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/tapi stubify -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/PackageFrameworks -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -L/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework/DebugLogger -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/EagerLinkingTBDs/Release-iphoneos/DebugLogger.framework/DebugLogger.tbd + +Strip /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework/DebugLogger (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -D -S -T /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework/DebugLogger + +SetOwnerAndGroup jaredcarlson:staff /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + /usr/sbin/chown -RH jaredcarlson:staff /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework + +SetMode u+w,go-w,a+rX /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + /bin/chmod -RH u+w,go-w,a+rX /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework + +CodeSign /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + + Signing Identity: "Apple Development: Jared Carlson (5MZ2F237S9)" + + /usr/bin/codesign --force --sign 3BDF57129BFD07856721AF6498FCADAC04A759AD --generate-entitlement-der /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework + +RegisterExecutionPolicyException /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + builtin-RegisterExecutionPolicyException /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework + +Touch /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework (in target 'DebugLogger' from project 'DebugLogger') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/DebugLogger + /usr/bin/touch -c /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/DebugLogger.framework + + +Build target LoggingUtilities of project LoggingUtilities with configuration Release + +SymLink /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/LoggingUtilities.framework ../../IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + /bin/ln -sfh ../../IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/LoggingUtilities.framework + +MkDir /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + /bin/mkdir -p /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework + +MkDir /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework/Headers (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + /bin/mkdir -p /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework/Headers + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-diagnostic-filename-map.json (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-diagnostic-filename-map.json + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities.hmap (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-project-headers.hmap (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-project-headers.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/all-product-headers.yaml (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/all-product-headers.yaml + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-own-target-headers.hmap (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-own-target-headers.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-generated-files.hmap (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-generated-files.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-all-target-headers.hmap (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-all-target-headers.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-all-non-framework-target-headers.hmap (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-all-non-framework-target-headers.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/unextended-module.modulemap (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/unextended-module.modulemap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/unextended-module-overlay.yaml (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/unextended-module-overlay.yaml + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/module.modulemap (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/module.modulemap + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework/Modules/module.modulemap /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/module.modulemap (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/module.modulemap /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework/Modules + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/empty-LoggingUtilities.plist (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/empty-LoggingUtilities.plist + +CpHeader /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework/Headers/LoggingUtilities.h /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities/LoggingUtilities/LoggingUtilities.h (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities/LoggingUtilities/LoggingUtilities.h /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework/Headers + +ProcessInfoPlistFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework/Info.plist /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/empty-LoggingUtilities.plist (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + builtin-infoPlistUtility /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/empty-LoggingUtilities.plist -producttype com.apple.product-type.framework -expandbuildsettings -format binary -platform iphoneos -requiredArchitecture arm64 -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework/Info.plist + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities.LinkFileList (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities.LinkFileList + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities.SwiftFileList (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities.SwiftFileList + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/DerivedSources/LoggingUtilities_vers.c (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/DerivedSources/LoggingUtilities_vers.c + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities-OutputFileMap.json (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities-OutputFileMap.json + +SwiftDriver LoggingUtilities normal arm64 com.apple.xcode.tools.swift.compiler (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + builtin-SwiftDriver -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name LoggingUtilities -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities.SwiftFileList -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -target arm64-apple-ios16.4 -enable-bare-slash-regex -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -swift-version 5 -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -parse-as-library -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64 -c -num-threads 10 -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities.swiftmodule -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/DerivedSources -emit-objc-header -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities-Swift.h -import-underlying-module -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/unextended-module-overlay.yaml -working-directory /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities -no-emit-module-separately-wmo + +SwiftDriver\ Compilation LoggingUtilities normal arm64 com.apple.xcode.tools.swift.compiler (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + builtin-Swift-Compilation -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name LoggingUtilities -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities.SwiftFileList -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -target arm64-apple-ios16.4 -enable-bare-slash-regex -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -swift-version 5 -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -parse-as-library -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64 -c -num-threads 10 -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities.swiftmodule -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/DerivedSources -emit-objc-header -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities-Swift.h -import-underlying-module -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/unextended-module-overlay.yaml -working-directory /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities -no-emit-module-separately-wmo + +SwiftCompile normal arm64 Compiling\ Utilities.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities/LoggingUtilities/Utilities.swift (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + builtin-swiftTaskExecution -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities/LoggingUtilities/Utilities.swift -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities.swiftmodule -emit-module-doc-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities.swiftdoc -emit-module-source-info-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities.swiftsourceinfo -emit-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities-master.d -serialize-diagnostics-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities-master.dia -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities-Swift.h -emit-abi-descriptor-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities.abi.json -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64 -target arm64-apple-ios16.4 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -no-color-diagnostics -g -import-underlying-module -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -O -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/DerivedSources -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/unextended-module-overlay.yaml -module-name LoggingUtilities -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.4 -target-sdk-name iphoneos16.4 -enable-default-cmo -parse-as-library -num-threads 10 -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/Utilities.o -index-unit-output-path /LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/Utilities.o + +SwiftCompile normal arm64 /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities/LoggingUtilities/Utilities.swift (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities/LoggingUtilities/Utilities.swift -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities.swiftmodule -emit-module-doc-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities.swiftdoc -emit-module-source-info-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities.swiftsourceinfo -emit-dependencies-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities-master.d -serialize-diagnostics-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities-master.dia -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities-Swift.h -emit-abi-descriptor-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities.abi.json -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64 -target arm64-apple-ios16.4 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -no-color-diagnostics -g -import-underlying-module -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -O -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/DerivedSources -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/unextended-module-overlay.yaml -module-name LoggingUtilities -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.4 -target-sdk-name iphoneos16.4 -enable-default-cmo -parse-as-library -num-threads 10 -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/Utilities.o -index-unit-output-path /LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/Utilities.o + +SwiftDriverJobDiscovery normal arm64 Compiling Utilities.swift (in target 'LoggingUtilities' from project 'LoggingUtilities') + +SwiftDriver\ Compilation\ Requirements LoggingUtilities normal arm64 com.apple.xcode.tools.swift.compiler (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + builtin-Swift-Compilation-Requirements -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name LoggingUtilities -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities.SwiftFileList -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -target arm64-apple-ios16.4 -enable-bare-slash-regex -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -swift-version 5 -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -parse-as-library -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64 -c -num-threads 10 -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities.swiftmodule -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/DerivedSources -emit-objc-header -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities-Swift.h -import-underlying-module -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/unextended-module-overlay.yaml -working-directory /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities -no-emit-module-separately-wmo + +SwiftMergeGeneratedHeaders /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework/Headers/LoggingUtilities-Swift.h /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities-Swift.h (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + builtin-swiftHeaderTool -arch arm64 /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities-Swift.h -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework/Headers/LoggingUtilities-Swift.h + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework/Modules/LoggingUtilities.swiftmodule/arm64-apple-ios.swiftdoc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities.swiftdoc (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities.swiftdoc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework/Modules/LoggingUtilities.swiftmodule/arm64-apple-ios.swiftdoc + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework/Modules/LoggingUtilities.swiftmodule/arm64-apple-ios.abi.json /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities.abi.json (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities.abi.json /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework/Modules/LoggingUtilities.swiftmodule/arm64-apple-ios.abi.json + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework/Modules/LoggingUtilities.swiftmodule/arm64-apple-ios.swiftmodule /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities.swiftmodule (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities.swiftmodule /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework/Modules/LoggingUtilities.swiftmodule/arm64-apple-ios.swiftmodule + +VerifyModule /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/LoggingUtilities.framework (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/modules-verifier /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/LoggingUtilities.framework --clang /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang --diagnostic-filename-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-diagnostic-filename-map.json --sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk --intermediates-directory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/VerifyModule --target arm64-apple-ios16.4 --language objective-c --language objective-c++ --standard gnu11 --standard gnu++20 + +CompileC /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities_vers.o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/DerivedSources/LoggingUtilities_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -target arm64-apple-ios16.4 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu11 -fmodules -gmodules -fmodules-cache-path\=/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/jaredcarlson/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 -fmodule-name\=LoggingUtilities -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Wquoted-include-in-framework-header -Werror\=deprecated-objc-isa-usage -Werror\=objc-root-class -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 -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -fstrict-aliasing -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -iquote /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-generated-files.hmap -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-own-target-headers.hmap -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-all-non-framework-target-headers.hmap -ivfsoverlay /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/all-product-headers.yaml -iquote /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/LoggingUtilities-project-headers.hmap -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/include -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/DerivedSources-normal/arm64 -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/DerivedSources/arm64 -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/DerivedSources -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/PackageFrameworks -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -fmodule-map-file\=/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/GeneratedModuleMaps-iphoneos/Logger.modulemap -MMD -MT dependencies -MF /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities_vers.d --serialize-diagnostics /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities_vers.dia -c /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/DerivedSources/LoggingUtilities_vers.c -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities_vers.o + +Ld /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework/LoggingUtilities normal (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios16.4 -dynamiclib -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -L/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/EagerLinkingTBDs/Release-iphoneos -L/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/EagerLinkingTBDs/Release-iphoneos -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/PackageFrameworks -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -filelist /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities.LinkFileList -install_name @rpath/LoggingUtilities.framework/LoggingUtilities -Xlinker -rpath -Xlinker @executable_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities_lto.o -fobjc-link-runtime -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities.swiftmodule /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/Logger_19F76B3DFF5FE6_PackageProduct.framework/Logger_19F76B3DFF5FE6_PackageProduct -Xlinker -no_adhoc_codesign -compatibility_version 1 -current_version 1 -Xlinker -dependency_info -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities_dependency_info.dat -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework/LoggingUtilities + +GenerateDSYMFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/LoggingUtilities.framework.dSYM /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework/LoggingUtilities (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework/LoggingUtilities -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/LoggingUtilities.framework.dSYM + +ExtractAppIntentsMetadata (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + /Applications/Xcode.app/Contents/Developer/usr/bin/appintentsmetadataprocessor --output /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework --toolchain-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name LoggingUtilities --sdk-root /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk --target-triple arm64-apple-ios16.4 --source-files /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities/LoggingUtilities/Utilities.swift --binary-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework/LoggingUtilities --dependency-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/LoggingUtilities_dependency_info.dat --stringsdata-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingUtilities.build/Release-iphoneos/LoggingUtilities.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata + +note: Metadata extraction skipped. No AppIntents.framework dependency found. (in target 'LoggingUtilities' from project 'LoggingUtilities') + +Metadata extraction skipped. No AppIntents.framework dependency found. + +GenerateTAPI /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/EagerLinkingTBDs/Release-iphoneos/LoggingUtilities.framework/LoggingUtilities.tbd (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/tapi stubify -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/PackageFrameworks -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -L/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework/LoggingUtilities -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/EagerLinkingTBDs/Release-iphoneos/LoggingUtilities.framework/LoggingUtilities.tbd + +Strip /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework/LoggingUtilities (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -D -S -T /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework/LoggingUtilities + +SetOwnerAndGroup jaredcarlson:staff /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + /usr/sbin/chown -RH jaredcarlson:staff /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework + +SetMode u+w,go-w,a+rX /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + /bin/chmod -RH u+w,go-w,a+rX /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework + +CodeSign /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + + Signing Identity: "Apple Development: Jared Carlson (5MZ2F237S9)" + + /usr/bin/codesign --force --sign 3BDF57129BFD07856721AF6498FCADAC04A759AD --generate-entitlement-der /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework + +RegisterExecutionPolicyException /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + builtin-RegisterExecutionPolicyException /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework + +Touch /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework (in target 'LoggingUtilities' from project 'LoggingUtilities') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingUtilities + /usr/bin/touch -c /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/LoggingUtilities.framework + + +Build target LoggingApp of project LoggingApp with configuration Release + +MkDir /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + /bin/mkdir -p /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app + +SymLink /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/LoggingApp.app ../../InstallationBuildProductsLocation/Applications/LoggingApp.app (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + /bin/ln -sfh ../../InstallationBuildProductsLocation/Applications/LoggingApp.app /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/LoggingApp.app + +ProcessProductPackaging /Users/jaredcarlson/Library/MobileDevice/Provisioning\ Profiles/3cf0977e-50d7-4bdf-8a0f-a413631c6d46.mobileprovision /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app/embedded.mobileprovision (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + builtin-productPackagingUtility /Users/jaredcarlson/Library/MobileDevice/Provisioning\ Profiles/3cf0977e-50d7-4bdf-8a0f-a413631c6d46.mobileprovision -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app/embedded.mobileprovision + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/DerivedSources/Entitlements.plist (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/DerivedSources/Entitlements.plist + +ProcessProductPackaging "" /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp.app.xcent (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + + Entitlements: + + { + "application-identifier" = "Q7YBK8CJUP.com.gototheboard.LoggingApp"; + "com.apple.developer.team-identifier" = Q7YBK8CJUP; + "get-task-allow" = 1; +} + + builtin-productPackagingUtility -entitlements -format xml -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp.app.xcent + +ProcessProductPackagingDER /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp.app.xcent /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp.app.xcent.der (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + /usr/bin/derq query -f xml -i /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp.app.xcent -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp.app.xcent.der --raw + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/all-product-headers.yaml (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/all-product-headers.yaml + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp.hmap (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp-own-target-headers.hmap (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp-own-target-headers.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp-project-headers.hmap (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp-project-headers.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp-all-target-headers.hmap (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp-all-target-headers.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp-generated-files.hmap (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp-generated-files.hmap + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp-all-non-framework-target-headers.hmap (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp-all-non-framework-target-headers.hmap + +CompileStoryboard /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Base.lproj/Main.storyboard (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + /Applications/Xcode.app/Contents/Developer/usr/bin/ibtool --errors --warnings --notices --module LoggingApp --output-partial-info-plist /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Base.lproj/Main-SBPartialInfo.plist --auto-activate-custom-fonts --target-device iphone --target-device ipad --minimum-deployment-target 16.4 --output-format human-readable-text --compilation-directory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Base.lproj /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Base.lproj/Main.storyboard + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/LoggingApp.LinkFileList (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/LoggingApp.LinkFileList + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/LoggingApp.SwiftFileList (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/LoggingApp.SwiftFileList + +CompileStoryboard /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Base.lproj/LaunchScreen.storyboard (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + /Applications/Xcode.app/Contents/Developer/usr/bin/ibtool --errors --warnings --notices --module LoggingApp --output-partial-info-plist /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Base.lproj/LaunchScreen-SBPartialInfo.plist --auto-activate-custom-fonts --target-device iphone --target-device ipad --minimum-deployment-target 16.4 --output-format human-readable-text --compilation-directory /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Base.lproj /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Base.lproj/LaunchScreen.storyboard + +WriteAuxiliaryFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/LoggingApp-OutputFileMap.json (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + write-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/LoggingApp-OutputFileMap.json + +CompileAssetCatalog /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Assets.xcassets (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + /Applications/Xcode.app/Contents/Developer/usr/bin/actool --output-format human-readable-text --notices --warnings --export-dependency-info /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/assetcatalog_dependencies --output-partial-info-plist /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/assetcatalog_generated_info.plist --app-icon AppIcon --accent-color AccentColor --compress-pngs --enable-on-demand-resources YES --development-region en --target-device iphone --target-device ipad --minimum-deployment-target 16.4 --platform iphoneos --compile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Assets.xcassets + +/* com.apple.actool.compilation-results */ +/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/assetcatalog_generated_info.plist + + +SwiftDriver LoggingApp normal arm64 com.apple.xcode.tools.swift.compiler (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + builtin-SwiftDriver -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name LoggingApp -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/LoggingApp.SwiftFileList -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -target arm64-apple-ios16.4 -enable-bare-slash-regex -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -swift-version 5 -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64 -c -num-threads 10 -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/LoggingApp-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/LoggingApp.swiftmodule -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/DerivedSources -emit-objc-header -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/LoggingApp-Swift.h -working-directory /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp -no-emit-module-separately-wmo + +ProcessInfoPlistFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app/Info.plist /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Info.plist (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + builtin-infoPlistUtility /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/Info.plist -producttype com.apple.product-type.application -genpkginfo /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app/PkgInfo -expandbuildsettings -format binary -platform iphoneos -additionalcontentfile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Base.lproj/LaunchScreen-SBPartialInfo.plist -additionalcontentfile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Base.lproj/Main-SBPartialInfo.plist -additionalcontentfile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/assetcatalog_generated_info.plist -requiredArchitecture arm64 -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app/Info.plist + +LinkStoryboards (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + /Applications/Xcode.app/Contents/Developer/usr/bin/ibtool --errors --warnings --notices --module LoggingApp --target-device iphone --target-device ipad --minimum-deployment-target 16.4 --output-format human-readable-text --link /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Base.lproj/LaunchScreen.storyboardc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Base.lproj/Main.storyboardc + +SwiftCompile normal arm64 Compiling\ ViewController.swift,\ AppDelegate.swift,\ SceneDelegate.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/ViewController.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/AppDelegate.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/SceneDelegate.swift (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + builtin-swiftTaskExecution -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/ViewController.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/AppDelegate.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/SceneDelegate.swift -supplementary-output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/supplementaryOutputs-2 -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64 -target arm64-apple-ios16.4 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -no-color-diagnostics -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -O -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/DerivedSources -module-name LoggingApp -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.4 -target-sdk-name iphoneos16.4 -enable-default-cmo -num-threads 10 -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/ViewController.o -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/AppDelegate.o -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/SceneDelegate.o -index-unit-output-path /LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/ViewController.o -index-unit-output-path /LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/AppDelegate.o -index-unit-output-path /LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/SceneDelegate.o + +CompileSwift normal arm64 (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/ViewController.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/AppDelegate.swift /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/SceneDelegate.swift -supplementary-output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/supplementaryOutputs-2 -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64 -target arm64-apple-ios16.4 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -no-color-diagnostics -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -O -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/DerivedSources -module-name LoggingApp -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.4 -target-sdk-name iphoneos16.4 -enable-default-cmo -num-threads 10 -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/ViewController.o -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/AppDelegate.o -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/SceneDelegate.o -index-unit-output-path /LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/ViewController.o -index-unit-output-path /LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/AppDelegate.o -index-unit-output-path /LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/SceneDelegate.o + +SwiftDriver\ Compilation LoggingApp normal arm64 com.apple.xcode.tools.swift.compiler (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + builtin-Swift-Compilation -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name LoggingApp -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/LoggingApp.SwiftFileList -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -target arm64-apple-ios16.4 -enable-bare-slash-regex -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -swift-version 5 -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64 -c -num-threads 10 -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/LoggingApp-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/LoggingApp.swiftmodule -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/DerivedSources -emit-objc-header -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/LoggingApp-Swift.h -working-directory /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp -no-emit-module-separately-wmo + +SwiftDriverJobDiscovery normal arm64 Compiling ViewController.swift, AppDelegate.swift, SceneDelegate.swift (in target 'LoggingApp' from project 'LoggingApp') + +SwiftDriver\ Compilation\ Requirements LoggingApp normal arm64 com.apple.xcode.tools.swift.compiler (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + builtin-Swift-Compilation-Requirements -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name LoggingApp -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/LoggingApp.SwiftFileList -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -target arm64-apple-ios16.4 -enable-bare-slash-regex -g -module-cache-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -swift-version 5 -I /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/PackageFrameworks -F /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -emit-localized-strings -emit-localized-strings-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64 -c -num-threads 10 -Xcc -ivfsstatcache -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos16.4-20E238-.sdkstatcache -output-file-map /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/LoggingApp-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/LoggingApp.swiftmodule -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp-generated-files.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp-own-target-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp-project-headers.hmap -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/DerivedSources-normal/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/DerivedSources/arm64 -Xcc -I/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/DerivedSources -emit-objc-header -emit-objc-header-path /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/LoggingApp-Swift.h -working-directory /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp -no-emit-module-separately-wmo + +SwiftMergeGeneratedHeaders /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/DerivedSources/LoggingApp-Swift.h /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/LoggingApp-Swift.h (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + builtin-swiftHeaderTool -arch arm64 /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/LoggingApp-Swift.h -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/DerivedSources/LoggingApp-Swift.h + +Ld /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app/LoggingApp normal (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios16.4 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk -L/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/EagerLinkingTBDs/Release-iphoneos -L/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/EagerLinkingTBDs/Release-iphoneos -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/PackageFrameworks -F/Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos -filelist /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/LoggingApp.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/LoggingApp_lto.o -Xlinker -final_output -Xlinker /Applications/LoggingApp.app/LoggingApp -fobjc-link-runtime -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/LoggingApp.swiftmodule /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/DebugLogger.framework/DebugLogger /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/LoggingUtilities.framework/LoggingUtilities -Xlinker -no_adhoc_codesign -Xlinker -dependency_info -Xlinker /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/LoggingApp_dependency_info.dat -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app/LoggingApp + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/LoggingApp.swiftmodule/arm64-apple-ios.swiftmodule /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/LoggingApp.swiftmodule (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/LoggingApp.swiftmodule /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/LoggingApp.swiftmodule/arm64-apple-ios.swiftmodule + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/LoggingApp.swiftmodule/arm64-apple-ios.abi.json /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/LoggingApp.abi.json (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/LoggingApp.abi.json /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/LoggingApp.swiftmodule/arm64-apple-ios.abi.json + +Copy /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/LoggingApp.swiftmodule/arm64-apple-ios.swiftdoc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/LoggingApp.swiftdoc (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/LoggingApp.swiftdoc /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/LoggingApp.swiftmodule/arm64-apple-ios.swiftdoc + +ExtractAppIntentsMetadata (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + /Applications/Xcode.app/Contents/Developer/usr/bin/appintentsmetadataprocessor --output /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app --toolchain-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name LoggingApp --sdk-root /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.4.sdk --target-triple arm64-apple-ios16.4 --source-files /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/ViewController.swift --source-files /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/AppDelegate.swift --source-files /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp/LoggingApp/SceneDelegate.swift --binary-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app/LoggingApp --dependency-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/LoggingApp_dependency_info.dat --stringsdata-file /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata + +note: Metadata extraction skipped. No AppIntents.framework dependency found. (in target 'LoggingApp' from project 'LoggingApp') + +Metadata extraction skipped. No AppIntents.framework dependency found. + +GenerateDSYMFile /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/LoggingApp.app.dSYM /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app/LoggingApp (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app/LoggingApp -o /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/LoggingApp.app.dSYM + +CopySwiftLibs /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + builtin-swiftStdLibTool --copy --verbose --sign 3BDF57129BFD07856721AF6498FCADAC04A759AD --scan-executable /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app/LoggingApp --scan-folder /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app/Frameworks --scan-folder /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app/PlugIns --scan-folder /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app/SystemExtensions --scan-folder /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app/Extensions --scan-folder /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/DebugLogger.framework --scan-folder /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/Release-iphoneos/LoggingUtilities.framework --platform iphoneos --toolchain /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app/Frameworks --unsigned-destination /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/BuildProductsPath/SwiftSupport --strip-bitcode --strip-bitcode-tool /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip --emit-dependency-info /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/SwiftStdLibToolInputDependencies.dep --filter-for-swift-os + +Strip /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app/LoggingApp (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -D /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app/LoggingApp + +SetOwnerAndGroup jaredcarlson:staff /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + /usr/sbin/chown -RH jaredcarlson:staff /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app + +SetMode u+w,go-w,a+rX /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + /bin/chmod -RH u+w,go-w,a+rX /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app + +CodeSign /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + + Signing Identity: "Apple Development: Jared Carlson (5MZ2F237S9)" + Provisioning Profile: "iOS Team Provisioning Profile: *" + (3cf0977e-50d7-4bdf-8a0f-a413631c6d46) + + /usr/bin/codesign --force --sign 3BDF57129BFD07856721AF6498FCADAC04A759AD --entitlements /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/IntermediateBuildFilesPath/LoggingApp.build/Release-iphoneos/LoggingApp.build/LoggingApp.app.xcent --generate-entitlement-der /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app + +RegisterExecutionPolicyException /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + builtin-RegisterExecutionPolicyException /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app + +Validate /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + builtin-validationUtility /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app + +Touch /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app (in target 'LoggingApp' from project 'LoggingApp') + cd /Users/jaredcarlson/Projects/Veracode/gen-ir/TestAssets/transitive-project-test3/LoggingApp + /usr/bin/touch -c /Users/jaredcarlson/Library/Developer/Xcode/DerivedData/LogDependency-coebheieiooatpatfntjgtlebtyg/Build/Intermediates.noindex/ArchiveIntermediates/LoggingApp/InstallationBuildProductsLocation/Applications/LoggingApp.app + + + +Build succeeded 8/17/23, 5:50 PM 4.1 seconds