Build Information
Failed to build AccessibilitySnapshot, reference master (4ea8cb
), with Swift 6.0 for visionOS using Xcode 16.0 on 4 Nov 2024 13:35:58 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme AccessibilitySnapshot-Package -destination generic/platform=xrOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete
Build Log
static var accessibilitySnapshotResources: Bundle = {
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/AccessibilitySnapshotView.swift:788:16: note: annotate 'accessibilitySnapshotResources' with '@MainActor' if property should only be accessed from the main actor
static var accessibilitySnapshotResources: Bundle = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/AccessibilitySnapshotView.swift:788:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var accessibilitySnapshotResources: Bundle = {
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotUtility.swift:58:9: error: main actor-isolated default value in a nonisolated context
colors: [UIColor] = AccessibilitySnapshotView.defaultMarkerColors,
^
/Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotUtility.swift:82:43: error: 'UIScreen' is unavailable in visionOS
let pixelWidth: CGFloat = 1 / UIScreen.main.scale
^~~~~~~~
UIKit.UIScreen:2:23: note: 'UIScreen' has been explicitly marked unavailable here
@MainActor open class UIScreen : NSObject, UITraitEnvironment {
^
/Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotUtility.swift:64:27: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let bounds = view.bounds
^
UIKit.UIView:3:25: note: property declared here
@MainActor open var bounds: CGRect { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotUtility.swift:54:24: note: add '@MainActor' to make static method 'generateSnapshotImage(for:useMonochromeSnapshot:viewRenderingMode:colors:maxPermissibleMissedRegionWidth:maxPermissibleMissedRegionHeight:)' part of global actor 'MainActor'
public static func generateSnapshotImage(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotUtility.swift:67:34: warning: call to main actor-isolated instance method 'renderToImage(monochrome:viewRenderingMode:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let viewImage = try view.renderToImage(
^
/Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIView+ImageRendering.swift:45:10: note: calls to instance method 'renderToImage(monochrome:viewRenderingMode:)' from outside of its actor context are implicitly asynchronous
func renderToImage(
^
/Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotUtility.swift:54:24: note: add '@MainActor' to make static method 'generateSnapshotImage(for:useMonochromeSnapshot:viewRenderingMode:colors:maxPermissibleMissedRegionWidth:maxPermissibleMissedRegionHeight:)' part of global actor 'MainActor'
public static func generateSnapshotImage(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotUtility.swift:72:20: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard view.bounds.width > 0 && view.bounds.height > 0 else {
^
UIKit.UIView:3:25: note: property declared here
@MainActor open var bounds: CGRect { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotUtility.swift:54:24: note: add '@MainActor' to make static method 'generateSnapshotImage(for:useMonochromeSnapshot:viewRenderingMode:colors:maxPermissibleMissedRegionWidth:maxPermissibleMissedRegionHeight:)' part of global actor 'MainActor'
public static func generateSnapshotImage(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotUtility.swift:72:45: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
guard view.bounds.width > 0 && view.bounds.height > 0 else {
^
UIKit.UIView:3:25: note: property declared here
@MainActor open var bounds: CGRect { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotUtility.swift:73:79: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
throw ImageRenderingError.containedViewHasZeroSize(viewSize: view.bounds.size)
^
UIKit.UIView:3:25: note: property declared here
@MainActor open var bounds: CGRect { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotUtility.swift:54:24: note: add '@MainActor' to make static method 'generateSnapshotImage(for:useMonochromeSnapshot:viewRenderingMode:colors:maxPermissibleMissedRegionWidth:maxPermissibleMissedRegionHeight:)' part of global actor 'MainActor'
public static func generateSnapshotImage(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotUtility.swift:82:57: warning: main actor-isolated property 'scale' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let pixelWidth: CGFloat = 1 / UIScreen.main.scale
^
UIKit.UIScreen:12:14: note: property declared here
open var scale: CGFloat { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotUtility.swift:82:52: warning: main actor-isolated class property 'main' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let pixelWidth: CGFloat = 1 / UIScreen.main.scale
^
UIKit.UIScreen:6:20: note: class property declared here
open class var main: UIScreen { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/String+Localization.swift:35:24: warning: static property 'localeToBundleMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var localeToBundleMap: [String: Bundle] = [:]
^
/Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/String+Localization.swift:35:24: note: convert 'localeToBundleMap' to a 'let' constant to make 'Sendable' shared state immutable
private static var localeToBundleMap: [String: Bundle] = [:]
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/String+Localization.swift:35:24: note: annotate 'localeToBundleMap' with '@MainActor' if property should only be accessed from the main actor
private static var localeToBundleMap: [String: Bundle] = [:]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/String+Localization.swift:35:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var localeToBundleMap: [String: Bundle] = [:]
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ resource_bundle_accessor.swift,\ AccessibilityHierarchyParser.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/AccessibilityHierarchyParser.swift (in target 'AccessibilitySnapshotCore' from project 'AccessibilitySnapshot')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources/resource_bundle_accessor.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/AccessibilityHierarchyParser.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/AccessibilitySnapshotView+PillsView.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/AccessibilitySnapshotView.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotUtility.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotView.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/SnapshotAndLegendView.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/String+Localization.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIAccessibility+SnapshotAdditions.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIApplication+FirstKeyWindow.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIView+ImageRendering.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIView+InvertColorsSnapshotting.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources/GeneratedAssetSymbols.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/resource_bundle_accessor.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/resource_bundle_accessor.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/resource_bundle_accessor.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/resource_bundle_accessor.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/AccessibilityHierarchyParser.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/AccessibilityHierarchyParser.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/AccessibilityHierarchyParser.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/AccessibilityHierarchyParser.dia -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64 -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/AccessibilitySnapshotCore_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros/AccessibilitySnapshotCore-ObjC.modulemap -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/ObjC/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name AccessibilitySnapshotCore -frontend-parseable-output -disable-clang-spi -target-sdk-version 2.1 -target-sdk-name xros2.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/resource_bundle_accessor.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/AccessibilityHierarchyParser.o -index-unit-output-path /AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/resource_bundle_accessor.o -index-unit-output-path /AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/AccessibilityHierarchyParser.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources/resource_bundle_accessor.swift (in target 'AccessibilitySnapshotCore' from project 'AccessibilitySnapshot')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources/resource_bundle_accessor.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/AccessibilityHierarchyParser.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/AccessibilitySnapshotView+PillsView.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/AccessibilitySnapshotView.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotUtility.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotView.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/SnapshotAndLegendView.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/String+Localization.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIAccessibility+SnapshotAdditions.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIApplication+FirstKeyWindow.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIView+ImageRendering.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIView+InvertColorsSnapshotting.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources/GeneratedAssetSymbols.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/resource_bundle_accessor.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/resource_bundle_accessor.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/resource_bundle_accessor.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/resource_bundle_accessor.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/AccessibilityHierarchyParser.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/AccessibilityHierarchyParser.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/AccessibilityHierarchyParser.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/AccessibilityHierarchyParser.dia -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64 -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/AccessibilitySnapshotCore_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros/AccessibilitySnapshotCore-ObjC.modulemap -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/ObjC/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name AccessibilitySnapshotCore -frontend-parseable-output -disable-clang-spi -target-sdk-version 2.1 -target-sdk-name xros2.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/resource_bundle_accessor.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/AccessibilityHierarchyParser.o -index-unit-output-path /AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/resource_bundle_accessor.o -index-unit-output-path /AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/AccessibilityHierarchyParser.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/AccessibilityHierarchyParser.swift (in target 'AccessibilitySnapshotCore' from project 'AccessibilitySnapshot')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources/resource_bundle_accessor.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/AccessibilityHierarchyParser.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/AccessibilitySnapshotView+PillsView.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/AccessibilitySnapshotView.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotUtility.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotView.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/SnapshotAndLegendView.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/String+Localization.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIAccessibility+SnapshotAdditions.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIApplication+FirstKeyWindow.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIView+ImageRendering.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIView+InvertColorsSnapshotting.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources/GeneratedAssetSymbols.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/resource_bundle_accessor.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/resource_bundle_accessor.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/resource_bundle_accessor.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/resource_bundle_accessor.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/AccessibilityHierarchyParser.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/AccessibilityHierarchyParser.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/AccessibilityHierarchyParser.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/AccessibilityHierarchyParser.dia -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64 -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/AccessibilitySnapshotCore_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros/AccessibilitySnapshotCore-ObjC.modulemap -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/ObjC/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name AccessibilitySnapshotCore -frontend-parseable-output -disable-clang-spi -target-sdk-version 2.1 -target-sdk-name xros2.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/resource_bundle_accessor.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/AccessibilityHierarchyParser.o -index-unit-output-path /AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/resource_bundle_accessor.o -index-unit-output-path /AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/AccessibilityHierarchyParser.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ UIApplication+FirstKeyWindow.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIApplication+FirstKeyWindow.swift (in target 'AccessibilitySnapshotCore' from project 'AccessibilitySnapshot')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/AccessibilityHierarchyParser.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/AccessibilitySnapshotView+PillsView.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/AccessibilitySnapshotView.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotUtility.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotView.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/SnapshotAndLegendView.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/String+Localization.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIAccessibility+SnapshotAdditions.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIApplication+FirstKeyWindow.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIView+ImageRendering.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIView+InvertColorsSnapshotting.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources/GeneratedAssetSymbols.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/UIApplication+FirstKeyWindow.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/UIApplication+FirstKeyWindow.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/UIApplication+FirstKeyWindow.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/UIApplication+FirstKeyWindow.dia -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64 -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/AccessibilitySnapshotCore_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros/AccessibilitySnapshotCore-ObjC.modulemap -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/ObjC/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name AccessibilitySnapshotCore -frontend-parseable-output -disable-clang-spi -target-sdk-version 2.1 -target-sdk-name xros2.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/UIApplication+FirstKeyWindow.o -index-unit-output-path /AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/UIApplication+FirstKeyWindow.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIApplication+FirstKeyWindow.swift (in target 'AccessibilitySnapshotCore' from project 'AccessibilitySnapshot')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/AccessibilityHierarchyParser.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/AccessibilitySnapshotView+PillsView.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/AccessibilitySnapshotView.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotUtility.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotView.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/SnapshotAndLegendView.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/String+Localization.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIAccessibility+SnapshotAdditions.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIApplication+FirstKeyWindow.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIView+ImageRendering.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIView+InvertColorsSnapshotting.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources/GeneratedAssetSymbols.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/UIApplication+FirstKeyWindow.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/UIApplication+FirstKeyWindow.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/UIApplication+FirstKeyWindow.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/UIApplication+FirstKeyWindow.dia -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64 -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/AccessibilitySnapshotCore_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros/AccessibilitySnapshotCore-ObjC.modulemap -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/ObjC/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name AccessibilitySnapshotCore -frontend-parseable-output -disable-clang-spi -target-sdk-version 2.1 -target-sdk-name xros2.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/UIApplication+FirstKeyWindow.o -index-unit-output-path /AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/UIApplication+FirstKeyWindow.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ HitTargetSnapshotUtility.swift,\ HitTargetSnapshotView.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotUtility.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotView.swift (in target 'AccessibilitySnapshotCore' from project 'AccessibilitySnapshot')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/AccessibilityHierarchyParser.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/AccessibilitySnapshotView+PillsView.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/AccessibilitySnapshotView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotUtility.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotView.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/SnapshotAndLegendView.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/String+Localization.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIAccessibility+SnapshotAdditions.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIApplication+FirstKeyWindow.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIView+ImageRendering.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIView+InvertColorsSnapshotting.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources/GeneratedAssetSymbols.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotUtility.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotUtility.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotUtility.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotUtility.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotView.dia -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64 -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/AccessibilitySnapshotCore_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros/AccessibilitySnapshotCore-ObjC.modulemap -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/ObjC/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name AccessibilitySnapshotCore -frontend-parseable-output -disable-clang-spi -target-sdk-version 2.1 -target-sdk-name xros2.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotUtility.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotView.o -index-unit-output-path /AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotUtility.o -index-unit-output-path /AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotUtility.swift (in target 'AccessibilitySnapshotCore' from project 'AccessibilitySnapshot')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/AccessibilityHierarchyParser.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/AccessibilitySnapshotView+PillsView.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/AccessibilitySnapshotView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotUtility.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotView.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/SnapshotAndLegendView.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/String+Localization.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIAccessibility+SnapshotAdditions.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIApplication+FirstKeyWindow.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIView+ImageRendering.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIView+InvertColorsSnapshotting.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources/GeneratedAssetSymbols.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotUtility.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotUtility.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotUtility.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotUtility.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotView.dia -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64 -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/AccessibilitySnapshotCore_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros/AccessibilitySnapshotCore-ObjC.modulemap -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/ObjC/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name AccessibilitySnapshotCore -frontend-parseable-output -disable-clang-spi -target-sdk-version 2.1 -target-sdk-name xros2.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotUtility.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotView.o -index-unit-output-path /AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotUtility.o -index-unit-output-path /AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotView.swift (in target 'AccessibilitySnapshotCore' from project 'AccessibilitySnapshot')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/AccessibilityHierarchyParser.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/AccessibilitySnapshotView+PillsView.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/AccessibilitySnapshotView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotUtility.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/HitTargetSnapshotView.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/SnapshotAndLegendView.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/String+Localization.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIAccessibility+SnapshotAdditions.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIApplication+FirstKeyWindow.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIView+ImageRendering.swift /Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/Swift/Classes/UIView+InvertColorsSnapshotting.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources/GeneratedAssetSymbols.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotUtility.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotUtility.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotUtility.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotUtility.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotView.dia -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64 -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/AccessibilitySnapshotCore_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros/AccessibilitySnapshotCore-ObjC.modulemap -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/AccessibilitySnapshot/Core/ObjC/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name AccessibilitySnapshotCore -frontend-parseable-output -disable-clang-spi -target-sdk-version 2.1 -target-sdk-name xros2.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotUtility.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotView.o -index-unit-output-path /AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotUtility.o -index-unit-output-path /AccessibilitySnapshot.build/Debug-xros/AccessibilitySnapshotCore.build/Objects-normal/arm64/HitTargetSnapshotView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftEmitModule normal arm64 Emitting\ module\ for\ SnapshotTesting (in target 'SnapshotTesting' from project 'swift-snapshot-testing')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Async.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/Internal.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/PlistEncoder.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/String+SpecialCharacters.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/View.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/XCTAttachment.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Diff.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Diffing.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Extensions/Wait.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Internal/Deprecations.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Internal/RecordIssue.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/SnapshotTestingConfiguration.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/SnapshotsTestTrait.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/Any.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/CALayer.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/CGPath.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/CaseIterable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/Data.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/Encodable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/NSBezierPath.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/NSImage.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/NSView.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/NSViewController.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/SceneKit.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/SpriteKit.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/String.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/SwiftUIView.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIBezierPath.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIImage.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIView.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIViewController.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/URLRequest.swift -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/SnapshotTesting_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SnapshotTesting -frontend-parseable-output -disable-clang-spi -target-sdk-version 2.1 -target-sdk-name xros2.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/SnapshotTesting.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/SnapshotTesting.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/SnapshotTesting-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/SnapshotTesting-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/SnapshotTesting-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/SnapshotTesting.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/SnapshotTesting.abi.json
EmitSwiftModule normal arm64 (in target 'SnapshotTesting' from project 'swift-snapshot-testing')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Async.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/Internal.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/PlistEncoder.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/String+SpecialCharacters.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/View.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/XCTAttachment.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Diff.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Diffing.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Extensions/Wait.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Internal/Deprecations.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Internal/RecordIssue.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/SnapshotTestingConfiguration.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/SnapshotsTestTrait.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/Any.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/CALayer.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/CGPath.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/CaseIterable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/Data.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/Encodable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/NSBezierPath.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/NSImage.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/NSView.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/NSViewController.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/SceneKit.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/SpriteKit.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/String.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/SwiftUIView.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIBezierPath.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIImage.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIView.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIViewController.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/URLRequest.swift -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/SnapshotTesting_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SnapshotTesting -frontend-parseable-output -disable-clang-spi -target-sdk-version 2.1 -target-sdk-name xros2.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/SnapshotTesting.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/SnapshotTesting.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/SnapshotTesting-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/SnapshotTesting-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/SnapshotTesting-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/SnapshotTesting.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/SnapshotTesting.abi.json
SwiftCompile normal arm64 Compiling\ UIView.swift,\ UIViewController.swift,\ URLRequest.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIView.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIViewController.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/URLRequest.swift (in target 'SnapshotTesting' from project 'swift-snapshot-testing')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Async.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/Internal.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/PlistEncoder.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/String+SpecialCharacters.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/View.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/XCTAttachment.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Diff.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Diffing.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Extensions/Wait.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Internal/Deprecations.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Internal/RecordIssue.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/SnapshotTestingConfiguration.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/SnapshotsTestTrait.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/Any.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/CALayer.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/CGPath.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/CaseIterable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/Data.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/Encodable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/NSBezierPath.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/NSImage.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/NSView.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/NSViewController.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/SceneKit.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/SpriteKit.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/String.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/SwiftUIView.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIBezierPath.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIImage.swift -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIView.swift -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIViewController.swift -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/URLRequest.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/supplementaryOutputs-10 -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/SnapshotTesting_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SnapshotTesting -frontend-parseable-output -disable-clang-spi -target-sdk-version 2.1 -target-sdk-name xros2.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/UIView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/UIViewController.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/URLRequest.o -index-unit-output-path /swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/UIView.o -index-unit-output-path /swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/UIViewController.o -index-unit-output-path /swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/URLRequest.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIView.swift (in target 'SnapshotTesting' from project 'swift-snapshot-testing')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Async.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/Internal.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/PlistEncoder.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/String+SpecialCharacters.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/View.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/XCTAttachment.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Diff.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Diffing.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Extensions/Wait.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Internal/Deprecations.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Internal/RecordIssue.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/SnapshotTestingConfiguration.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/SnapshotsTestTrait.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/Any.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/CALayer.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/CGPath.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/CaseIterable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/Data.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/Encodable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/NSBezierPath.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/NSImage.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/NSView.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/NSViewController.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/SceneKit.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/SpriteKit.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/String.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/SwiftUIView.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIBezierPath.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIImage.swift -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIView.swift -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIViewController.swift -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/URLRequest.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/supplementaryOutputs-10 -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/SnapshotTesting_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SnapshotTesting -frontend-parseable-output -disable-clang-spi -target-sdk-version 2.1 -target-sdk-name xros2.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/UIView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/UIViewController.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/URLRequest.o -index-unit-output-path /swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/UIView.o -index-unit-output-path /swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/UIViewController.o -index-unit-output-path /swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/URLRequest.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIViewController.swift (in target 'SnapshotTesting' from project 'swift-snapshot-testing')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Async.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/Internal.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/PlistEncoder.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/String+SpecialCharacters.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/View.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/XCTAttachment.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Diff.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Diffing.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Extensions/Wait.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Internal/Deprecations.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Internal/RecordIssue.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/SnapshotTestingConfiguration.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/SnapshotsTestTrait.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/Any.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/CALayer.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/CGPath.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/CaseIterable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/Data.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/Encodable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/NSBezierPath.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/NSImage.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/NSView.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/NSViewController.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/SceneKit.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/SpriteKit.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/String.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/SwiftUIView.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIBezierPath.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIImage.swift -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIView.swift -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIViewController.swift -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/URLRequest.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/supplementaryOutputs-10 -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/SnapshotTesting_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SnapshotTesting -frontend-parseable-output -disable-clang-spi -target-sdk-version 2.1 -target-sdk-name xros2.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/UIView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/UIViewController.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/URLRequest.o -index-unit-output-path /swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/UIView.o -index-unit-output-path /swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/UIViewController.o -index-unit-output-path /swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/URLRequest.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/URLRequest.swift (in target 'SnapshotTesting' from project 'swift-snapshot-testing')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Async.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/Internal.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/PlistEncoder.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/String+SpecialCharacters.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/View.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/XCTAttachment.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Diff.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Diffing.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Extensions/Wait.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Internal/Deprecations.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Internal/RecordIssue.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/SnapshotTestingConfiguration.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/SnapshotsTestTrait.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/Any.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/CALayer.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/CGPath.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/CaseIterable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/Data.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/Encodable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/NSBezierPath.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/NSImage.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/NSView.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/NSViewController.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/SceneKit.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/SpriteKit.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/String.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/SwiftUIView.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIBezierPath.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIImage.swift -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIView.swift -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIViewController.swift -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/URLRequest.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/supplementaryOutputs-10 -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/SnapshotTesting_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SnapshotTesting -frontend-parseable-output -disable-clang-spi -target-sdk-version 2.1 -target-sdk-name xros2.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/UIView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/UIViewController.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/URLRequest.o -index-unit-output-path /swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/UIView.o -index-unit-output-path /swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/UIViewController.o -index-unit-output-path /swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/URLRequest.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/UIKit-DVCADKTIJT95246U2MGCCONN3.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/UIKit-DVCADKTIJT95246U2MGCCONN3.scan
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -cc1 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -ferror-limit 19 -serialize-diagnostic-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/UIKit-DVCADKTIJT95246U2MGCCONN3.dia -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -fsystem-module -fmodule-map-file\=/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/System/Library/Frameworks/Foundation.framework/Modules/module.modulemap -fmodule-map-file\=/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/usr/include/os_availability.modulemap -fmodule-map-file\=/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/usr/include/TargetConditionals.modulemap -fmodule-map-file\=/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Modules/module.modulemap -fmodule-map-file\=/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/System/Library/Frameworks/CoreImage.framework/Modules/module.modulemap -fmodule-map-file\=/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/System/Library/Frameworks/CoreText.framework/Modules/module.modulemap -fmodule-map-file\=/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/System/Library/Frameworks/QuartzCore.framework/Modules/module.modulemap -fmodule-map-file\=/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/System/Library/Frameworks/Symbols.framework/Modules/module.modulemap -fmodule-map-file\=/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/System/Library/Frameworks/FileProvider.framework/Modules/module.modulemap -fmodule-map-file\=/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/System/Library/Frameworks/UserNotifications.framework/Modules/module.modulemap -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/UIKit-DVCADKTIJT95246U2MGCCONN3.pcm -disable-free -emit-module -x objective-c /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS.sdk/System/Library/Frameworks/UIKit.framework/Modules/module.modulemap -target-abi darwinpcs -target-cpu apple-a12 -target-feature +v8.3a -target-feature +aes -target-feature +crc -target-feature +fp-armv8 -target-feature +fullfp16 -target-feature +lse -target-feature +ras -target-feature +rcpc -target-feature +rdm -target-feature +sha2 -target-feature +neon -target-feature +zcm -target-feature +zcz -triple arm64-apple-xros1.0.0 -target-linker-version 1115.7.3 -target-sdk-version\=2.1 -fmodules-validate-system-headers -fno-modules-prune-non-affecting-module-map-files -fno-modulemap-allow-subdirectory-search -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/16 -fmodule-format\=obj -fmodule-file\=CoreGraphics\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreGraphics-51SK51CL09P6TQK6X2IRQKI27.pcm -fmodule-file\=CoreImage\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreImage-7L4OYKTDKMJT7OFI3UGGR5JRR.pcm -fmodule-file\=CoreText\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreText-BC0W0ECTT5D5FSQMA1Q2C79RL.pcm -fmodule-file\=FileProvider\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/FileProvider-BUIHAU5UHIRL6IOHC96P8PPX0.pcm -fmodule-file\=Foundation\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Foundation-13U8WQB2OBW2JSSQO6S2OT916.pcm -fmodule-file\=QuartzCore\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/QuartzCore-8G1M6BGEABQNSFWQKEBB3XEI.pcm -fmodule-file\=Symbols\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Symbols-12AZZ66F5KA8YW9BOYGJKB1U6.pcm -fmodule-file\=TargetConditionals\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/TargetConditionals-CP3HEXKF7LCLJ1J0KPY1C3RNN.pcm -fmodule-file\=UserNotifications\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/UserNotifications-7LKJVPR4HILZMHG0NO3GRGNYL.pcm -fmodule-file\=os_availability\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability-C08E8EYNBVESYFK19YT436NVJ.pcm -isystem /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/16/include -internal-externc-isystem /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/usr/include -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -std\=gnu11 -fexceptions -fmodules -fmodule-name\=UIKit -fmodules-search-all -fno-implicit-modules -fobjc-exceptions -fmax-type-align\=16 -fstack-check -ftrivial-auto-var-init\=zero -mdarwin-stkchk-strong-link -fno-odr-hash-protocols -pic-level 2 -disable-objc-default-synthesize-properties -stack-protector 1 -fobjc-runtime\=ios-17.0.0.0 -fobjc-arc -fobjc-runtime-has-weak -fobjc-weak -fgnuc-version\=4.2.1 -fblocks -ffp-contract\=off -fclang-abi-compat\=4.0 -fno-experimental-relative-c++-abi-vtables -fno-file-reproducible -clang-vendor-feature\=+disableNonDependentMemberExprInCurrentInstantiation -clang-vendor-feature\=+enableAggressiveVLAFolding -clang-vendor-feature\=+revert09abecef7bbf -clang-vendor-feature\=+thisNoAlignAttr -clang-vendor-feature\=+thisNoNullAttr -clang-vendor-feature\=+disableAtImportPrivateFrameworkInImplementationError -O0 -fcommon -fno-sanitize-address-use-odr-indicator -fno-sanitize-memory-param-retval -fmerge-all-constants -fno-verbose-asm -fregister-global-dtors-with-atexit -fno-use-init-array -funique-basic-block-section-names -dwarf-version\=4 -debugger-tuning\=lldb -llvm-verify-each -dwarf-ext-refs -no-struct-path-tbaa -fexperimental-assignment-tracking\=disabled -no-enable-noundef-analysis -stack-protector-buffer-size 0 -debug-info-kind\=standalone -fdiagnostics-hotness-threshold\=0 -fdiagnostics-misexpect-tolerance\=0 -D DEBUG\=1 -D OBJC_OLD_DISPATCH_PROTOTYPES\=1 -D SWIFT_PACKAGE -D Xcode -D __GCC_HAVE_DWARF2_CFI_ASM\=1 -MT moduledependenciestarget -dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/UIKit-DVCADKTIJT95246U2MGCCONN3.d -skip-unused-modulemap-deps
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Symbols-4EERPUVVLM8S7V5UOUIL9HMQP.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Symbols-4EERPUVVLM8S7V5UOUIL9HMQP.scan
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -cc1 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -w -ferror-limit 19 -serialize-diagnostic-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Symbols-4EERPUVVLM8S7V5UOUIL9HMQP.dia -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -fsystem-module -fmodule-map-file\=/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/System/Library/Frameworks/Foundation.framework/Modules/module.modulemap -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Symbols-4EERPUVVLM8S7V5UOUIL9HMQP.pcm -disable-free -emit-module -x objective-c /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS.sdk/System/Library/Frameworks/Symbols.framework/Modules/module.modulemap -target-abi darwinpcs -target-cpu apple-a12 -target-feature +v8.3a -target-feature +aes -target-feature +crc -target-feature +fp-armv8 -target-feature +fullfp16 -target-feature +lse -target-feature +ras -target-feature +rcpc -target-feature +rdm -target-feature +sha2 -target-feature +neon -target-feature +zcm -target-feature +zcz -triple arm64-apple-xros1.0.0 -target-linker-version 1115.7.3 -target-sdk-version\=2.1 -fmodules-validate-system-headers -fno-modules-prune-non-affecting-module-map-files -fno-modulemap-allow-subdirectory-search -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/16 -fmodule-format\=obj -fmodule-file\=Foundation\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Foundation-7MS6T7NQDJ3IAC7MEJ8PJ2MMD.pcm -isystem /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/16/include -internal-externc-isystem /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/usr/include -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -std\=gnu11 -fexceptions -fmodules -fmodule-name\=Symbols -fmodules-search-all -fno-implicit-modules -fobjc-exceptions -fmax-type-align\=16 -fstack-check -ftrivial-auto-var-init\=zero -mdarwin-stkchk-strong-link -fno-odr-hash-protocols -pic-level 2 -disable-objc-default-synthesize-properties -stack-protector 1 -fobjc-runtime\=ios-17.0.0.0 -fobjc-arc -fobjc-runtime-has-weak -fobjc-weak -fgnuc-version\=4.2.1 -fblocks -ffp-contract\=off -fclang-abi-compat\=4.0 -fno-experimental-relative-c++-abi-vtables -fno-file-reproducible -clang-vendor-feature\=+disableNonDependentMemberExprInCurrentInstantiation -clang-vendor-feature\=+enableAggressiveVLAFolding -clang-vendor-feature\=+revert09abecef7bbf -clang-vendor-feature\=+thisNoAlignAttr -clang-vendor-feature\=+thisNoNullAttr -clang-vendor-feature\=+disableAtImportPrivateFrameworkInImplementationError -O0 -fcommon -fno-sanitize-address-use-odr-indicator -fno-sanitize-memory-param-retval -fmerge-all-constants -fno-verbose-asm -fregister-global-dtors-with-atexit -fno-use-init-array -funique-basic-block-section-names -dwarf-version\=4 -debugger-tuning\=lldb -llvm-verify-each -dwarf-ext-refs -no-struct-path-tbaa -fexperimental-assignment-tracking\=disabled -no-enable-noundef-analysis -stack-protector-buffer-size 0 -debug-info-kind\=standalone -fdiagnostics-hotness-threshold\=0 -fdiagnostics-misexpect-tolerance\=0 -D DEBUG\=1 -D OBJC_OLD_DISPATCH_PROTOTYPES\=1 -D SWIFT_PACKAGE -D Xcode -D __GCC_HAVE_DWARF2_CFI_ASM\=1 -MT moduledependenciestarget -dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Symbols-4EERPUVVLM8S7V5UOUIL9HMQP.d -skip-unused-modulemap-deps
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/UserNotifications-3X34PBX6Z4CUXITNR7S1F8ZMO.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/UserNotifications-3X34PBX6Z4CUXITNR7S1F8ZMO.scan
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -cc1 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -w -ferror-limit 19 -serialize-diagnostic-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/UserNotifications-3X34PBX6Z4CUXITNR7S1F8ZMO.dia -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -fsystem-module -fmodule-map-file\=/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/System/Library/Frameworks/Foundation.framework/Modules/module.modulemap -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/UserNotifications-3X34PBX6Z4CUXITNR7S1F8ZMO.pcm -disable-free -emit-module -x objective-c /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS.sdk/System/Library/Frameworks/UserNotifications.framework/Modules/module.modulemap -target-abi darwinpcs -target-cpu apple-a12 -target-feature +v8.3a -target-feature +aes -target-feature +crc -target-feature +fp-armv8 -target-feature +fullfp16 -target-feature +lse -target-feature +ras -target-feature +rcpc -target-feature +rdm -target-feature +sha2 -target-feature +neon -target-feature +zcm -target-feature +zcz -triple arm64-apple-xros1.0.0 -target-linker-version 1115.7.3 -target-sdk-version\=2.1 -fmodules-validate-system-headers -fno-modules-prune-non-affecting-module-map-files -fno-modulemap-allow-subdirectory-search -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/16 -fmodule-format\=obj -fmodule-file\=Foundation\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Foundation-7MS6T7NQDJ3IAC7MEJ8PJ2MMD.pcm -isystem /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/16/include -internal-externc-isystem /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/usr/include -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -std\=gnu11 -fexceptions -fmodules -fmodule-name\=UserNotifications -fmodules-search-all -fno-implicit-modules -fobjc-exceptions -fmax-type-align\=16 -fstack-check -ftrivial-auto-var-init\=zero -mdarwin-stkchk-strong-link -fno-odr-hash-protocols -pic-level 2 -disable-objc-default-synthesize-properties -stack-protector 1 -fobjc-runtime\=ios-17.0.0.0 -fobjc-arc -fobjc-runtime-has-weak -fobjc-weak -fgnuc-version\=4.2.1 -fblocks -ffp-contract\=off -fclang-abi-compat\=4.0 -fno-experimental-relative-c++-abi-vtables -fno-file-reproducible -clang-vendor-feature\=+disableNonDependentMemberExprInCurrentInstantiation -clang-vendor-feature\=+enableAggressiveVLAFolding -clang-vendor-feature\=+revert09abecef7bbf -clang-vendor-feature\=+thisNoAlignAttr -clang-vendor-feature\=+thisNoNullAttr -clang-vendor-feature\=+disableAtImportPrivateFrameworkInImplementationError -O0 -fcommon -fno-sanitize-address-use-odr-indicator -fno-sanitize-memory-param-retval -fmerge-all-constants -fno-verbose-asm -fregister-global-dtors-with-atexit -fno-use-init-array -funique-basic-block-section-names -dwarf-version\=4 -debugger-tuning\=lldb -llvm-verify-each -dwarf-ext-refs -no-struct-path-tbaa -fexperimental-assignment-tracking\=disabled -no-enable-noundef-analysis -stack-protector-buffer-size 0 -debug-info-kind\=standalone -fdiagnostics-hotness-threshold\=0 -fdiagnostics-misexpect-tolerance\=0 -D DEBUG\=1 -D OBJC_OLD_DISPATCH_PROTOTYPES\=1 -D SWIFT_PACKAGE -D Xcode -D __GCC_HAVE_DWARF2_CFI_ASM\=1 -MT moduledependenciestarget -dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/UserNotifications-3X34PBX6Z4CUXITNR7S1F8ZMO.d -skip-unused-modulemap-deps
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/IOSurface-2HBOKICCVV8DKRVE6OLBWX7DM.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/IOSurface-2HBOKICCVV8DKRVE6OLBWX7DM.scan
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -cc1 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -w -ferror-limit 19 -serialize-diagnostic-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/IOSurface-2HBOKICCVV8DKRVE6OLBWX7DM.dia -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -fsystem-module -fmodule-map-file\=/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/usr/include/Darwin.modulemap -fmodule-map-file\=/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/usr/include/DarwinFoundation.modulemap -fmodule-map-file\=/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/usr/include/os_availability.modulemap -fmodule-map-file\=/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/usr/include/TargetConditionals.modulemap -fmodule-map-file\=/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Modules/module.modulemap -fmodule-map-file\=/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/System/Library/Frameworks/Foundation.framework/Modules/module.modulemap -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/IOSurface-2HBOKICCVV8DKRVE6OLBWX7DM.pcm -disable-free -emit-module -x objective-c /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS.sdk/System/Library/Frameworks/IOSurface.framework/Modules/module.modulemap -target-abi darwinpcs -target-cpu apple-a12 -target-feature +v8.3a -target-feature +aes -target-feature +crc -target-feature +fp-armv8 -target-feature +fullfp16 -target-feature +lse -target-feature +ras -target-feature +rcpc -target-feature +rdm -target-feature +sha2 -target-feature +neon -target-feature +zcm -target-feature +zcz -triple arm64-apple-xros1.0.0 -target-linker-version 1115.7.3 -target-sdk-version\=2.1 -fmodules-validate-system-headers -fno-modules-prune-non-affecting-module-map-files -fno-modulemap-allow-subdirectory-search -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/16 -fmodule-format\=obj -fmodule-file\=CoreFoundation\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreFoundation-503EDSQDW005T30A71SZ9LTUF.pcm -fmodule-file\=Darwin\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Darwin-51KI4RE8A44JOANVBABVFAN8D.pcm -fmodule-file\=DarwinFoundation\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/DarwinFoundation-30UO0A9V3LYH2N34W2AYMS3SG.pcm -fmodule-file\=Foundation\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Foundation-7MS6T7NQDJ3IAC7MEJ8PJ2MMD.pcm -fmodule-file\=TargetConditionals\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/TargetConditionals-AWW0C4AJFUQRNRON5LE3YOFIG.pcm -fmodule-file\=os_availability\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability-E6LYIBCGPH1F1BQJKVBZ09NFJ.pcm -isystem /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/16/include -internal-externc-isystem /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/usr/include -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -std\=gnu11 -fexceptions -fmodules -fmodule-name\=IOSurface -fmodules-search-all -fno-implicit-modules -fobjc-exceptions -fmax-type-align\=16 -fstack-check -ftrivial-auto-var-init\=zero -mdarwin-stkchk-strong-link -fno-odr-hash-protocols -pic-level 2 -disable-objc-default-synthesize-properties -stack-protector 1 -fobjc-runtime\=ios-17.0.0.0 -fobjc-arc -fobjc-runtime-has-weak -fobjc-weak -fgnuc-version\=4.2.1 -fblocks -ffp-contract\=off -fclang-abi-compat\=4.0 -fno-experimental-relative-c++-abi-vtables -fno-file-reproducible -clang-vendor-feature\=+disableNonDependentMemberExprInCurrentInstantiation -clang-vendor-feature\=+enableAggressiveVLAFolding -clang-vendor-feature\=+revert09abecef7bbf -clang-vendor-feature\=+thisNoAlignAttr -clang-vendor-feature\=+thisNoNullAttr -clang-vendor-feature\=+disableAtImportPrivateFrameworkInImplementationError -O0 -fcommon -fno-sanitize-address-use-odr-indicator -fno-sanitize-memory-param-retval -fmerge-all-constants -fno-verbose-asm -fregister-global-dtors-with-atexit -fno-use-init-array -funique-basic-block-section-names -dwarf-version\=4 -debugger-tuning\=lldb -llvm-verify-each -dwarf-ext-refs -no-struct-path-tbaa -fexperimental-assignment-tracking\=disabled -no-enable-noundef-analysis -stack-protector-buffer-size 0 -debug-info-kind\=standalone -fdiagnostics-hotness-threshold\=0 -fdiagnostics-misexpect-tolerance\=0 -D DEBUG\=1 -D OBJC_OLD_DISPATCH_PROTOTYPES\=1 -D SWIFT_PACKAGE -D Xcode -D __GCC_HAVE_DWARF2_CFI_ASM\=1 -MT moduledependenciestarget -dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/IOSurface-2HBOKICCVV8DKRVE6OLBWX7DM.d -skip-unused-modulemap-deps
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/FileProvider-78MTOZ46QSW9Y6241X3W9MJ48.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/FileProvider-78MTOZ46QSW9Y6241X3W9MJ48.scan
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -cc1 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -w -ferror-limit 19 -serialize-diagnostic-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/FileProvider-78MTOZ46QSW9Y6241X3W9MJ48.dia -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -fsystem-module -fmodule-map-file\=/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/System/Library/Frameworks/Foundation.framework/Modules/module.modulemap -fmodule-map-file\=/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Modules/module.modulemap -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/FileProvider-78MTOZ46QSW9Y6241X3W9MJ48.pcm -disable-free -emit-module -x objective-c /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS.sdk/System/Library/Frameworks/FileProvider.framework/Modules/module.modulemap -target-abi darwinpcs -target-cpu apple-a12 -target-feature +v8.3a -target-feature +aes -target-feature +crc -target-feature +fp-armv8 -target-feature +fullfp16 -target-feature +lse -target-feature +ras -target-feature +rcpc -target-feature +rdm -target-feature +sha2 -target-feature +neon -target-feature +zcm -target-feature +zcz -triple arm64-apple-xros1.0.0 -target-linker-version 1115.7.3 -target-sdk-version\=2.1 -fmodules-validate-system-headers -fno-modules-prune-non-affecting-module-map-files -fno-modulemap-allow-subdirectory-search -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/16 -fmodule-format\=obj -fmodule-file\=CoreGraphics\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreGraphics-CDB3QZWX5SQHCRH4X8HDWGP8X.pcm -fmodule-file\=Foundation\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Foundation-7MS6T7NQDJ3IAC7MEJ8PJ2MMD.pcm -isystem /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/16/include -internal-externc-isystem /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/usr/include -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -std\=gnu11 -fexceptions -fmodules -fmodule-name\=FileProvider -fmodules-search-all -fno-implicit-modules -fobjc-exceptions -fmax-type-align\=16 -fstack-check -ftrivial-auto-var-init\=zero -mdarwin-stkchk-strong-link -fno-odr-hash-protocols -pic-level 2 -disable-objc-default-synthesize-properties -stack-protector 1 -fobjc-runtime\=ios-17.0.0.0 -fobjc-arc -fobjc-runtime-has-weak -fobjc-weak -fgnuc-version\=4.2.1 -fblocks -ffp-contract\=off -fclang-abi-compat\=4.0 -fno-experimental-relative-c++-abi-vtables -fno-file-reproducible -clang-vendor-feature\=+disableNonDependentMemberExprInCurrentInstantiation -clang-vendor-feature\=+enableAggressiveVLAFolding -clang-vendor-feature\=+revert09abecef7bbf -clang-vendor-feature\=+thisNoAlignAttr -clang-vendor-feature\=+thisNoNullAttr -clang-vendor-feature\=+disableAtImportPrivateFrameworkInImplementationError -O0 -fcommon -fno-sanitize-address-use-odr-indicator -fno-sanitize-memory-param-retval -fmerge-all-constants -fno-verbose-asm -fregister-global-dtors-with-atexit -fno-use-init-array -funique-basic-block-section-names -dwarf-version\=4 -debugger-tuning\=lldb -llvm-verify-each -dwarf-ext-refs -no-struct-path-tbaa -fexperimental-assignment-tracking\=disabled -no-enable-noundef-analysis -stack-protector-buffer-size 0 -debug-info-kind\=standalone -fdiagnostics-hotness-threshold\=0 -fdiagnostics-misexpect-tolerance\=0 -D DEBUG\=1 -D OBJC_OLD_DISPATCH_PROTOTYPES\=1 -D SWIFT_PACKAGE -D Xcode -D __GCC_HAVE_DWARF2_CFI_ASM\=1 -MT moduledependenciestarget -dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/FileProvider-78MTOZ46QSW9Y6241X3W9MJ48.d -skip-unused-modulemap-deps
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/OpenGLES-BAOCJOXULT772P3B9VXRUJS8I.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/OpenGLES-BAOCJOXULT772P3B9VXRUJS8I.scan
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -cc1 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -w -ferror-limit 19 -serialize-diagnostic-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/OpenGLES-BAOCJOXULT772P3B9VXRUJS8I.dia -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -fsystem-module -fmodule-map-file\=/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/System/Library/Frameworks/Foundation.framework/Modules/module.modulemap -fmodule-map-file\=/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/usr/include/os_availability.modulemap -fmodule-map-file\=/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/System/Library/Frameworks/IOSurface.framework/Modules/module.modulemap -fmodule-map-file\=/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/16/include/module.modulemap -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/OpenGLES-BAOCJOXULT772P3B9VXRUJS8I.pcm -disable-free -emit-module -x objective-c /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS.sdk/System/Library/Frameworks/OpenGLES.framework/Modules/module.modulemap -target-abi darwinpcs -target-cpu apple-a12 -target-feature +v8.3a -target-feature +aes -target-feature +crc -target-feature +fp-armv8 -target-feature +fullfp16 -target-feature +lse -target-feature +ras -target-feature +rcpc -target-feature +rdm -target-feature +sha2 -target-feature +neon -target-feature +zcm -target-feature +zcz -triple arm64-apple-xros1.0.0 -target-linker-version 1115.7.3 -target-sdk-version\=2.1 -fmodules-validate-system-headers -fno-modules-prune-non-affecting-module-map-files -fno-modulemap-allow-subdirectory-search -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/16 -fmodule-format\=obj -fmodule-file\=Foundation\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Foundation-7MS6T7NQDJ3IAC7MEJ8PJ2MMD.pcm -fmodule-file\=IOSurface\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/IOSurface-2HBOKICCVV8DKRVE6OLBWX7DM.pcm -fmodule-file\=_Builtin_stdint\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdint-F54SU21CD9KS0G0X1S9Y9DM3Q.pcm -fmodule-file\=os_availability\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability-E6LYIBCGPH1F1BQJKVBZ09NFJ.pcm -isystem /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/16/include -internal-externc-isystem /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/usr/include -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -std\=gnu11 -fexceptions -fmodules -fmodule-name\=OpenGLES -fmodules-search-all -fno-implicit-modules -fobjc-exceptions -fmax-type-align\=16 -fstack-check -ftrivial-auto-var-init\=zero -mdarwin-stkchk-strong-link -fno-odr-hash-protocols -pic-level 2 -disable-objc-default-synthesize-properties -stack-protector 1 -fobjc-runtime\=ios-17.0.0.0 -fobjc-arc -fobjc-runtime-has-weak -fobjc-weak -fgnuc-version\=4.2.1 -fblocks -ffp-contract\=off -fclang-abi-compat\=4.0 -fno-experimental-relative-c++-abi-vtables -fno-file-reproducible -clang-vendor-feature\=+disableNonDependentMemberExprInCurrentInstantiation -clang-vendor-feature\=+enableAggressiveVLAFolding -clang-vendor-feature\=+revert09abecef7bbf -clang-vendor-feature\=+thisNoAlignAttr -clang-vendor-feature\=+thisNoNullAttr -clang-vendor-feature\=+disableAtImportPrivateFrameworkInImplementationError -O0 -fcommon -fno-sanitize-address-use-odr-indicator -fno-sanitize-memory-param-retval -fmerge-all-constants -fno-verbose-asm -fregister-global-dtors-with-atexit -fno-use-init-array -funique-basic-block-section-names -dwarf-version\=4 -debugger-tuning\=lldb -llvm-verify-each -dwarf-ext-refs -no-struct-path-tbaa -fexperimental-assignment-tracking\=disabled -no-enable-noundef-analysis -stack-protector-buffer-size 0 -debug-info-kind\=standalone -fdiagnostics-hotness-threshold\=0 -fdiagnostics-misexpect-tolerance\=0 -D DEBUG\=1 -D OBJC_OLD_DISPATCH_PROTOTYPES\=1 -D SWIFT_PACKAGE -D Xcode -D __GCC_HAVE_DWARF2_CFI_ASM\=1 -MT moduledependenciestarget -dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/OpenGLES-BAOCJOXULT772P3B9VXRUJS8I.d -skip-unused-modulemap-deps
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Metal-D5QB9G76NXHUQ5HX3S258ZEC7.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Metal-D5QB9G76NXHUQ5HX3S258ZEC7.scan
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -cc1 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -w -ferror-limit 19 -serialize-diagnostic-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Metal-D5QB9G76NXHUQ5HX3S258ZEC7.dia -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -fsystem-module -fmodule-map-file\=/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/usr/include/Darwin.modulemap -fmodule-map-file\=/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/usr/include/c_standard_library.modulemap -fmodule-map-file\=/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/usr/include/os_availability.modulemap -fmodule-map-file\=/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/usr/include/TargetConditionals.modulemap -fmodule-map-file\=/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/System/Library/Frameworks/Foundation.framework/Modules/module.modulemap -fmodule-map-file\=/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/System/Library/Frameworks/IOSurface.framework/Modules/module.modulemap -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Metal-D5QB9G76NXHUQ5HX3S258ZEC7.pcm -disable-free -emit-module -x objective-c /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS.sdk/System/Library/Frameworks/Metal.framework/Modules/module.modulemap -target-abi darwinpcs -target-cpu apple-a12 -target-feature +v8.3a -target-feature +aes -target-feature +crc -target-feature +fp-armv8 -target-feature +fullfp16 -target-feature +lse -target-feature +ras -target-feature +rcpc -target-feature +rdm -target-feature +sha2 -target-feature +neon -target-feature +zcm -target-feature +zcz -triple arm64-apple-xros1.0.0 -target-linker-version 1115.7.3 -target-sdk-version\=2.1 -fmodules-validate-system-headers -fno-modules-prune-non-affecting-module-map-files -fno-modulemap-allow-subdirectory-search -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/16 -fmodule-format\=obj -fmodule-file\=Darwin\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Darwin-51KI4RE8A44JOANVBABVFAN8D.pcm -fmodule-file\=Foundation\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Foundation-7MS6T7NQDJ3IAC7MEJ8PJ2MMD.pcm -fmodule-file\=IOSurface\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/IOSurface-2HBOKICCVV8DKRVE6OLBWX7DM.pcm -fmodule-file\=TargetConditionals\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/TargetConditionals-AWW0C4AJFUQRNRON5LE3YOFIG.pcm -fmodule-file\=_math\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_math-D9KS2HVYJRWS73FTNM5PGPXMF.pcm -fmodule-file\=os_availability\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability-E6LYIBCGPH1F1BQJKVBZ09NFJ.pcm -isystem /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/16/include -internal-externc-isystem /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/usr/include -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -std\=gnu11 -fexceptions -fmodules -fmodule-name\=Metal -fmodules-search-all -fno-implicit-modules -fobjc-exceptions -fmax-type-align\=16 -fstack-check -ftrivial-auto-var-init\=zero -mdarwin-stkchk-strong-link -fno-odr-hash-protocols -pic-level 2 -disable-objc-default-synthesize-properties -stack-protector 1 -fobjc-runtime\=ios-17.0.0.0 -fobjc-arc -fobjc-runtime-has-weak -fobjc-weak -fgnuc-version\=4.2.1 -fblocks -ffp-contract\=off -fclang-abi-compat\=4.0 -fno-experimental-relative-c++-abi-vtables -fno-file-reproducible -clang-vendor-feature\=+disableNonDependentMemberExprInCurrentInstantiation -clang-vendor-feature\=+enableAggressiveVLAFolding -clang-vendor-feature\=+revert09abecef7bbf -clang-vendor-feature\=+thisNoAlignAttr -clang-vendor-feature\=+thisNoNullAttr -clang-vendor-feature\=+disableAtImportPrivateFrameworkInImplementationError -O0 -fcommon -fno-sanitize-address-use-odr-indicator -fno-sanitize-memory-param-retval -fmerge-all-constants -fno-verbose-asm -fregister-global-dtors-with-atexit -fno-use-init-array -funique-basic-block-section-names -dwarf-version\=4 -debugger-tuning\=lldb -llvm-verify-each -dwarf-ext-refs -no-struct-path-tbaa -fexperimental-assignment-tracking\=disabled -no-enable-noundef-analysis -stack-protector-buffer-size 0 -debug-info-kind\=standalone -fdiagnostics-hotness-threshold\=0 -fdiagnostics-misexpect-tolerance\=0 -D DEBUG\=1 -D OBJC_OLD_DISPATCH_PROTOTYPES\=1 -D SWIFT_PACKAGE -D Xcode -D __GCC_HAVE_DWARF2_CFI_ASM\=1 -MT moduledependenciestarget -dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Metal-D5QB9G76NXHUQ5HX3S258ZEC7.d -skip-unused-modulemap-deps
SwiftCompile normal arm64 Compiling\ AssertSnapshot.swift,\ Async.swift,\ Internal.swift,\ PlistEncoder.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Async.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/Internal.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/PlistEncoder.swift (in target 'SnapshotTesting' from project 'swift-snapshot-testing')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Async.swift -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/Internal.swift -primary-file /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/PlistEncoder.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/String+SpecialCharacters.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/View.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/XCTAttachment.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Diff.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Diffing.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Extensions/Wait.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Internal/Deprecations.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Internal/RecordIssue.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/SnapshotTestingConfiguration.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/SnapshotsTestTrait.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/Any.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/CALayer.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/CGPath.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/CaseIterable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/Data.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/Encodable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/NSBezierPath.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/NSImage.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/NSView.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/NSViewController.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/SceneKit.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/SpriteKit.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/String.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/SwiftUIView.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIBezierPath.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIImage.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIView.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/UIViewController.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Snapshotting/URLRequest.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/supplementaryOutputs-1 -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -suppress-warnings -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/SnapshotTesting_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SnapshotTesting -frontend-parseable-output -disable-clang-spi -target-sdk-version 2.1 -target-sdk-name xros2.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/AssertSnapshot.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/Async.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/Internal.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/PlistEncoder.o -index-unit-output-path /swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/AssertSnapshot.o -index-unit-output-path /swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/Async.o -index-unit-output-path /swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/Internal.o -index-unit-output-path /swift-snapshot-testing.build/Debug-xros/SnapshotTesting.build/Objects-normal/arm64/PlistEncoder.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
Command SwiftCompile failed with a nonzero exit code
** BUILD FAILED **
The following build commands failed:
SwiftEmitModule normal arm64 Emitting\ module\ for\ AccessibilitySnapshotCore (in target 'AccessibilitySnapshotCore' from project 'AccessibilitySnapshot')
EmitSwiftModule normal arm64 (in target 'AccessibilitySnapshotCore' from project 'AccessibilitySnapshot')
SwiftCompile normal arm64 Compiling\ AssertSnapshot.swift,\ Async.swift,\ Internal.swift,\ PlistEncoder.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Async.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/Internal.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/Common/PlistEncoder.swift (in target 'SnapshotTesting' from project 'swift-snapshot-testing')
Building workspace spi-builder-workspace with scheme AccessibilitySnapshot-Package
(4 failures)
BUILD FAILURE 6.0 visionOS