The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of Physical, reference main (88718a), with Swift 6.0 for visionOS using Xcode 16.2 on 30 Nov 2024 07:48:36 UTC.

Swift 6 data race errors: 250

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Physical -destination generic/platform=xrOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:519:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let lightSpeed = 299_792_458.m/.s
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:520:21: warning: static property 'gravitation' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let gravitation = 6.674_30e-11.m(3)/.kg.s(2)
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:520:21: note: annotate 'gravitation' with '@MainActor' if property should only be accessed from the main actor
                public static let gravitation = 6.674_30e-11.m(3)/.kg.s(2)
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:520:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let gravitation = 6.674_30e-11.m(3)/.kg.s(2)
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:522:21: warning: static property 'planck' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let planck = 6.626_070_15e-34.J.s
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:522:21: note: annotate 'planck' with '@MainActor' if property should only be accessed from the main actor
                public static let planck = 6.626_070_15e-34.J.s
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:522:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let planck = 6.626_070_15e-34.J.s
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:523:21: warning: static property 'reducedPlanck' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let reducedPlanck = 1.054_571_817e-34.J.s.perRadian
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:523:21: note: annotate 'reducedPlanck' with '@MainActor' if property should only be accessed from the main actor
                public static let reducedPlanck = 1.054_571_817e-34.J.s.perRadian
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:523:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let reducedPlanck = 1.054_571_817e-34.J.s.perRadian
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:524:21: warning: static property 'fineStructure' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let fineStructure = 7.297_352_5693e-3.constant // 0.007_297_352_562_781_278 ish
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:524:21: note: annotate 'fineStructure' with '@MainActor' if property should only be accessed from the main actor
                public static let fineStructure = 7.297_352_5693e-3.constant // 0.007_297_352_562_781_278 ish
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:524:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let fineStructure = 7.297_352_5693e-3.constant // 0.007_297_352_562_781_278 ish
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:525:21: warning: static property 'inverseFineStructure' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let inverseFineStructure = 137.035_999_084.constant
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:525:21: note: annotate 'inverseFineStructure' with '@MainActor' if property should only be accessed from the main actor
                public static let inverseFineStructure = 137.035_999_084.constant
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:525:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let inverseFineStructure = 137.035_999_084.constant
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:526:21: warning: static property 'rydberg' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let rydberg = 10_973_731.568_160/.m
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:526:21: note: annotate 'rydberg' with '@MainActor' if property should only be accessed from the main actor
                public static let rydberg = 10_973_731.568_160/.m
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:526:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let rydberg = 10_973_731.568_160/.m
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:527:21: warning: static property 'hyperfineTransitionFrequency' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let hyperfineTransitionFrequency = 9_192_631_770.Hz
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:527:21: note: annotate 'hyperfineTransitionFrequency' with '@MainActor' if property should only be accessed from the main actor
                public static let hyperfineTransitionFrequency = 9_192_631_770.Hz
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:527:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let hyperfineTransitionFrequency = 9_192_631_770.Hz
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:528:21: warning: static property 'bohrMagneton' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let bohrMagneton = 9.276_010_0783e-24.J/.teslas
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:528:21: note: annotate 'bohrMagneton' with '@MainActor' if property should only be accessed from the main actor
                public static let bohrMagneton = 9.276_010_0783e-24.J/.teslas
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:528:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let bohrMagneton = 9.276_010_0783e-24.J/.teslas
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:529:21: warning: static property 'nuclearMagneton' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let nuclearMagneton = 5.050_783_7461e-27.J/.teslas
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:529:21: note: annotate 'nuclearMagneton' with '@MainActor' if property should only be accessed from the main actor
                public static let nuclearMagneton = 5.050_783_7461e-27.J/.teslas
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:529:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let nuclearMagneton = 5.050_783_7461e-27.J/.teslas
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:530:21: warning: static property 'bohrRadius' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let bohrRadius = 6.291_772_109_03e-11.m
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:530:21: note: annotate 'bohrRadius' with '@MainActor' if property should only be accessed from the main actor
                public static let bohrRadius = 6.291_772_109_03e-11.m
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:530:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let bohrRadius = 6.291_772_109_03e-11.m
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:531:21: warning: static property 'bjerrumWaterLength' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let bjerrumWaterLength = 7.1.angstroms
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:531:21: note: annotate 'bjerrumWaterLength' with '@MainActor' if property should only be accessed from the main actor
                public static let bjerrumWaterLength = 7.1.angstroms
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:531:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let bjerrumWaterLength = 7.1.angstroms
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:532:21: warning: static property 'elementaryCharge' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let elementaryCharge = 1.602_176_634e-19.coulombs
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:532:21: note: annotate 'elementaryCharge' with '@MainActor' if property should only be accessed from the main actor
                public static let elementaryCharge = 1.602_176_634e-19.coulombs
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:532:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let elementaryCharge = 1.602_176_634e-19.coulombs
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:534:21: warning: static property 'vacuumElectricPermittivity' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let vacuumElectricPermittivity = 8.854_187_8128e-12.F/.m
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:534:21: note: annotate 'vacuumElectricPermittivity' with '@MainActor' if property should only be accessed from the main actor
                public static let vacuumElectricPermittivity = 8.854_187_8128e-12.F/.m
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:534:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let vacuumElectricPermittivity = 8.854_187_8128e-12.F/.m
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:536:21: warning: static property 'vacuumMagneticPermeability' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let vacuumMagneticPermeability = 1.256_637_062_12e-6.henries/.m
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:536:21: note: annotate 'vacuumMagneticPermeability' with '@MainActor' if property should only be accessed from the main actor
                public static let vacuumMagneticPermeability = 1.256_637_062_12e-6.henries/.m
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:536:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let vacuumMagneticPermeability = 1.256_637_062_12e-6.henries/.m
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:537:21: warning: static property 'vacuumImpedance' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let vacuumImpedance = 376.730_313_668.ohms
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:537:21: note: annotate 'vacuumImpedance' with '@MainActor' if property should only be accessed from the main actor
                public static let vacuumImpedance = 376.730_313_668.ohms
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:537:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let vacuumImpedance = 376.730_313_668.ohms
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:538:21: warning: static property 'josephson' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let josephson = 483_597.848_4e9.Hz/.volts
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:538:21: note: annotate 'josephson' with '@MainActor' if property should only be accessed from the main actor
                public static let josephson = 483_597.848_4e9.Hz/.volts
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:538:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let josephson = 483_597.848_4e9.Hz/.volts
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:539:21: warning: static property 'vonKlitzing' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let vonKlitzing = 25_812.807_45.ohms
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:539:21: note: annotate 'vonKlitzing' with '@MainActor' if property should only be accessed from the main actor
                public static let vonKlitzing = 25_812.807_45.ohms
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:539:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let vonKlitzing = 25_812.807_45.ohms
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:540:21: warning: static property 'quantumConductance' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let quantumConductance = 7.748_091_729e-5.siemens
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:540:21: note: annotate 'quantumConductance' with '@MainActor' if property should only be accessed from the main actor
                public static let quantumConductance = 7.748_091_729e-5.siemens
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:540:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let quantumConductance = 7.748_091_729e-5.siemens
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:541:21: warning: static property 'inverseQuantumConductance' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let inverseQuantumConductance = 12_906.403_72.ohms
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:541:21: note: annotate 'inverseQuantumConductance' with '@MainActor' if property should only be accessed from the main actor
                public static let inverseQuantumConductance = 12_906.403_72.ohms
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:541:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let inverseQuantumConductance = 12_906.403_72.ohms
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:542:21: warning: static property 'magneticFluxQuantum' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let magneticFluxQuantum = 2.067_833_848e-15.webers
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:542:21: note: annotate 'magneticFluxQuantum' with '@MainActor' if property should only be accessed from the main actor
                public static let magneticFluxQuantum = 2.067_833_848e-15.webers
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:542:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let magneticFluxQuantum = 2.067_833_848e-15.webers
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:544:21: warning: static property 'electronGFactor' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let electronGFactor = -2.002_319_304_362_56.constant
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:544:21: note: annotate 'electronGFactor' with '@MainActor' if property should only be accessed from the main actor
                public static let electronGFactor = -2.002_319_304_362_56.constant
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:544:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let electronGFactor = -2.002_319_304_362_56.constant
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:546:21: warning: static property 'hartreeEnergy' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let hartreeEnergy = 4.359_744_722_2071e-18.J
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:546:21: note: annotate 'hartreeEnergy' with '@MainActor' if property should only be accessed from the main actor
                public static let hartreeEnergy = 4.359_744_722_2071e-18.J
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:546:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let hartreeEnergy = 4.359_744_722_2071e-18.J
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:547:21: warning: static property 'circulationQuantum' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let circulationQuantum = 3.636_947_5516e-4.m(2)/.s
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:547:21: note: annotate 'circulationQuantum' with '@MainActor' if property should only be accessed from the main actor
                public static let circulationQuantum = 3.636_947_5516e-4.m(2)/.s
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:547:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let circulationQuantum = 3.636_947_5516e-4.m(2)/.s
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:548:21: warning: static property 'thomsonCrossSection' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let thomsonCrossSection = 6.652_458_7321e-29.m(2)
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:548:21: note: annotate 'thomsonCrossSection' with '@MainActor' if property should only be accessed from the main actor
                public static let thomsonCrossSection = 6.652_458_7321e-29.m(2)
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:548:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let thomsonCrossSection = 6.652_458_7321e-29.m(2)
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:549:21: warning: static property 'wZMassRatio' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let wZMassRatio = 0.881_53.constant
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:549:21: note: annotate 'wZMassRatio' with '@MainActor' if property should only be accessed from the main actor
                public static let wZMassRatio = 0.881_53.constant
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:549:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let wZMassRatio = 0.881_53.constant
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:550:21: warning: static property 'weakMixingAngle' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let weakMixingAngle = 0.222_90.constant
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:550:21: note: annotate 'weakMixingAngle' with '@MainActor' if property should only be accessed from the main actor
                public static let weakMixingAngle = 0.222_90.constant
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:550:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let weakMixingAngle = 0.222_90.constant
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:551:21: warning: static property 'atomicMass' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let atomicMass = 1.660_539_066_60e-27.kg
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:551:21: note: annotate 'atomicMass' with '@MainActor' if property should only be accessed from the main actor
                public static let atomicMass = 1.660_539_066_60e-27.kg
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:551:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let atomicMass = 1.660_539_066_60e-27.kg
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:552:21: warning: static property 'stefanBoltzmann' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let stefanBoltzmann = 5.670_374_419e-8.W/.m(2).kelvin(4)
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:552:21: note: annotate 'stefanBoltzmann' with '@MainActor' if property should only be accessed from the main actor
                public static let stefanBoltzmann = 5.670_374_419e-8.W/.m(2).kelvin(4)
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:552:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let stefanBoltzmann = 5.670_374_419e-8.W/.m(2).kelvin(4)
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:553:21: warning: static property 'firstRadiation' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let firstRadiation = 3.741_771_852e-16.W.m(2)
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:553:21: note: annotate 'firstRadiation' with '@MainActor' if property should only be accessed from the main actor
                public static let firstRadiation = 3.741_771_852e-16.W.m(2)
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:553:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let firstRadiation = 3.741_771_852e-16.W.m(2)
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:554:21: warning: static property 'secondRadiation' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let secondRadiation = 1.438_776_877e-2.m.kelvin
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:554:21: note: annotate 'secondRadiation' with '@MainActor' if property should only be accessed from the main actor
                public static let secondRadiation = 1.438_776_877e-2.m.kelvin
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:554:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let secondRadiation = 1.438_776_877e-2.m.kelvin
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:555:21: warning: static property 'firstRadiationSpectralRadiance' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let firstRadiationSpectralRadiance = 1.191_042_972e-16.W.m(2).steradians
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:555:21: note: annotate 'firstRadiationSpectralRadiance' with '@MainActor' if property should only be accessed from the main actor
                public static let firstRadiationSpectralRadiance = 1.191_042_972e-16.W.m(2).steradians
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:555:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let firstRadiationSpectralRadiance = 1.191_042_972e-16.W.m(2).steradians
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:556:21: warning: static property 'wienDisplacement' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let wienDisplacement = 2.897_771_955e-3.m.kelvin
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:556:21: note: annotate 'wienDisplacement' with '@MainActor' if property should only be accessed from the main actor
                public static let wienDisplacement = 2.897_771_955e-3.m.kelvin
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:556:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let wienDisplacement = 2.897_771_955e-3.m.kelvin
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:557:21: warning: static property 'wienFrequency' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let wienFrequency = 5.878_925_757e10.Hz/.kelvin
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:557:21: note: annotate 'wienFrequency' with '@MainActor' if property should only be accessed from the main actor
                public static let wienFrequency = 5.878_925_757e10.Hz/.kelvin
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:557:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let wienFrequency = 5.878_925_757e10.Hz/.kelvin
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:558:21: warning: static property 'wienEntropy' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let wienEntropy = 3.002_916_077e-3.m.kelvin
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:558:21: note: annotate 'wienEntropy' with '@MainActor' if property should only be accessed from the main actor
                public static let wienEntropy = 3.002_916_077e-3.m.kelvin
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:558:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let wienEntropy = 3.002_916_077e-3.m.kelvin
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:937:21: warning: static property 'mass' is not concurrency-safe because non-'Sendable' type 'Mass?' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let mass = Mass(Physical.Constants.Particle.Positron.mass)
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/UnitStructs.swift:318:15: note: consider making struct 'Mass' conform to the 'Sendable' protocol
public struct Mass: PhysicalType {
              ^
                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:937:21: note: annotate 'mass' with '@MainActor' if property should only be accessed from the main actor
                public static let mass = Mass(Physical.Constants.Particle.Positron.mass)
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:937:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let mass = Mass(Physical.Constants.Particle.Positron.mass)
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:938:21: warning: static property 'charge' is not concurrency-safe because non-'Sendable' type 'ElectricCharge?' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let charge = ElectricCharge(Physical.Constants.Particle.Positron.charge)
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/UnitStructs.swift:174:15: note: consider making struct 'ElectricCharge' conform to the 'Sendable' protocol
public struct ElectricCharge: PhysicalType {
              ^
                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:938:21: note: annotate 'charge' with '@MainActor' if property should only be accessed from the main actor
                public static let charge = ElectricCharge(Physical.Constants.Particle.Positron.charge)
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:938:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let charge = ElectricCharge(Physical.Constants.Particle.Positron.charge)
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:945:22: warning: static property 'surfaceGravity' is not concurrency-safe because non-'Sendable' type 'Acceleration?' may have shared mutable state; this is an error in the Swift 6 language mode
                        public static let surfaceGravity = Acceleration(Physical.Constants.Earth.surfaceGravity)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/UnitStructs.swift:94:15: note: consider making struct 'Acceleration' conform to the 'Sendable' protocol
public struct Acceleration: PhysicalType {
              ^
                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:945:22: note: annotate 'surfaceGravity' with '@MainActor' if property should only be accessed from the main actor
                        public static let surfaceGravity = Acceleration(Physical.Constants.Earth.surfaceGravity)
                                          ^
                        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:945:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                        public static let surfaceGravity = Acceleration(Physical.Constants.Earth.surfaceGravity)
                                          ^
                        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:951:20: warning: static property 'meanRadius' is not concurrency-safe because non-'Sendable' type 'Length?' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let meanRadius = Length(6371.km)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/UnitStructs.swift:278:15: note: consider making struct 'Length' conform to the 'Sendable' protocol
public struct Length: PhysicalType {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:951:20: note: annotate 'meanRadius' with '@MainActor' if property should only be accessed from the main actor
        public static let meanRadius = Length(6371.km)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:951:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let meanRadius = Length(6371.km)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:954:21: warning: static property 'gravity' is not concurrency-safe because non-'Sendable' type 'Acceleration?' may have shared mutable state; this is an error in the Swift 6 language mode
                public static let gravity = Acceleration(Physical.Constants.Earth.surfaceGravity)
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/UnitStructs.swift:94:15: note: consider making struct 'Acceleration' conform to the 'Sendable' protocol
public struct Acceleration: PhysicalType {
              ^
                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:954:21: note: annotate 'gravity' with '@MainActor' if property should only be accessed from the main actor
                public static let gravity = Acceleration(Physical.Constants.Earth.surfaceGravity)
                                  ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:954:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                public static let gravity = Acceleration(Physical.Constants.Earth.surfaceGravity)
                                  ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:957:22: warning: static property 'total' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                        public static let total = 510_072_000.squareKilometers
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:957:22: note: annotate 'total' with '@MainActor' if property should only be accessed from the main actor
                        public static let total = 510_072_000.squareKilometers
                                          ^
                        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:957:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                        public static let total = 510_072_000.squareKilometers
                                          ^
                        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:958:22: warning: static property 'land' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                        public static let land = 148_940_000.squareKilometers
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:958:22: note: annotate 'land' with '@MainActor' if property should only be accessed from the main actor
                        public static let land = 148_940_000.squareKilometers
                                          ^
                        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:958:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                        public static let land = 148_940_000.squareKilometers
                                          ^
                        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:959:22: warning: static property 'water' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                        public static let water = 361_132_000.squareKilometers
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:959:22: note: annotate 'water' with '@MainActor' if property should only be accessed from the main actor
                        public static let water = 361_132_000.squareKilometers
                                          ^
                        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:959:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                        public static let water = 361_132_000.squareKilometers
                                          ^
                        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:963:22: warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                        public static let min = 184.K
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:963:22: note: annotate 'min' with '@MainActor' if property should only be accessed from the main actor
                        public static let min = 184.K
                                          ^
                        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:963:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                        public static let min = 184.K
                                          ^
                        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:964:22: warning: static property 'mean' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                        public static let mean = 287.16.K
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:964:22: note: annotate 'mean' with '@MainActor' if property should only be accessed from the main actor
                        public static let mean = 287.16.K
                                          ^
                        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:964:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                        public static let mean = 287.16.K
                                          ^
                        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:965:22: warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'Physical' may have shared mutable state; this is an error in the Swift 6 language mode
                        public static let max = 330.K
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift:3:15: note: consider making struct 'Physical' conform to the 'Sendable' protocol
public struct Physical: Collection {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:965:22: note: annotate 'max' with '@MainActor' if property should only be accessed from the main actor
                        public static let max = 330.K
                                          ^
                        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift:965:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                        public static let max = 330.K
                                          ^
                        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Experiments.swift (in target 'Physical' from project 'Physical')
    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/Sources/Physical/Core/Generated/FloatingPointUnits.swift /Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Generated/PhysicalConversionType.swift /Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Generated/PhysicalUnits.swift /Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Numerics.swift /Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical.swift /Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical/Algebra.swift /Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical/Arrays.swift /Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical/Comparable.swift /Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical/Composition.swift /Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical/Conversions.swift /Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical/Description.swift /Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical/Equatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical/Inits.swift /Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical/Miscellaneous.swift /Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Physical/NotAThing.swift /Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/TieredNumber.swift /Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Undetermined/Dimension.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Physical/Core/Undetermined/Units.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Constants.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Experiments.swift /Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Globals.swift /Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/Metadata.swift /Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/PhysicalArrays.swift /Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/PhysicalFunctions.swift /Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/PhysicalStatistics.swift /Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/UnitStructs.swift /Users/admin/builder/spi-builder-workspace/Sources/Physical/Experimental/dB.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/supplementaryOutputs-7 -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 -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/Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Physical_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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/Physical.build/Debug-xros/Physical.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/Physical.build/Debug-xros/Physical.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Physical -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/Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Units.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Constants.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Experiments.o -index-unit-output-path /Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Units.o -index-unit-output-path /Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Constants.o -index-unit-output-path /Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Experiments.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling Equatable.swift, Inits.swift, Miscellaneous.swift (in target 'Physical' from project 'Physical')
SwiftDriver\ Compilation\ Requirements Physical normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Physical' from project 'Physical')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Physical -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Physical.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -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 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Physical-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Physical.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Physical_const_extract_protocols.json -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/Physical.build/Debug-xros/Physical.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Physical-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros/Physical-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Physical-Swift.h (in target 'Physical' from project 'Physical')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Physical-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros/Physical-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Physical.swiftmodule/arm64-apple-xros.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Physical.swiftmodule (in target 'Physical' from project 'Physical')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Physical.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Physical.swiftmodule/arm64-apple-xros.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Physical.swiftmodule/arm64-apple-xros.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Physical.swiftdoc (in target 'Physical' from project 'Physical')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Physical.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Physical.swiftmodule/arm64-apple-xros.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Physical.swiftmodule/arm64-apple-xros.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Physical.abi.json (in target 'Physical' from project 'Physical')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Physical.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Physical.swiftmodule/arm64-apple-xros.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Physical.swiftmodule/Project/arm64-apple-xros.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Physical.swiftsourceinfo (in target 'Physical' from project 'Physical')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Physical.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Physical.swiftmodule/Project/arm64-apple-xros.swiftsourceinfo
SwiftDriver PhysicalTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'PhysicalTests' from project 'Physical')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name PhysicalTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -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 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests_const_extract_protocols.json -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/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling NotAThing.swift, TieredNumber.swift, Dimension.swift (in target 'Physical' from project 'Physical')
SwiftEmitModule normal arm64 Emitting\ module\ for\ PhysicalTests (in target 'PhysicalTests' from project 'Physical')
    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/Tests/PhysicalTests/Arrays.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/Doubles.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/PhysicalTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/Temperatures.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/XCTestManifests.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/dBTests.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/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/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PhysicalTests -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/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.swiftsourceinfo -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.abi.json
EmitSwiftModule normal arm64 (in target 'PhysicalTests' from project 'Physical')
    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/Tests/PhysicalTests/Arrays.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/Doubles.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/PhysicalTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/Temperatures.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/XCTestManifests.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/dBTests.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/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/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PhysicalTests -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/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.swiftsourceinfo -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.abi.json
SwiftCompile normal arm64 Compiling\ dBTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/dBTests.swift (in target 'PhysicalTests' from project 'Physical')
    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/Tests/PhysicalTests/Arrays.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/Doubles.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/PhysicalTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/Temperatures.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/XCTestManifests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/dBTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/dBTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/dBTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/dBTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/dBTests.dia -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/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PhysicalTests -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/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/dBTests.o -index-unit-output-path /Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/dBTests.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/Tests/PhysicalTests/dBTests.swift (in target 'PhysicalTests' from project 'Physical')
    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/Tests/PhysicalTests/Arrays.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/Doubles.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/PhysicalTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/Temperatures.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/XCTestManifests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/dBTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/dBTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/dBTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/dBTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/dBTests.dia -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/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PhysicalTests -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/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/dBTests.o -index-unit-output-path /Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/dBTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling Composition.swift, Conversions.swift, Description.swift (in target 'Physical' from project 'Physical')
SwiftCompile normal arm64 Compiling\ Doubles.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/Doubles.swift (in target 'PhysicalTests' from project 'Physical')
    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/Tests/PhysicalTests/Arrays.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/Doubles.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/PhysicalTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/Temperatures.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/XCTestManifests.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/dBTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Doubles.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Doubles.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Doubles.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Doubles.dia -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/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PhysicalTests -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/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Doubles.o -index-unit-output-path /Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Doubles.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/Tests/PhysicalTests/Doubles.swift (in target 'PhysicalTests' from project 'Physical')
    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/Tests/PhysicalTests/Arrays.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/Doubles.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/PhysicalTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/Temperatures.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/XCTestManifests.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/dBTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Doubles.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Doubles.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Doubles.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Doubles.dia -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/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PhysicalTests -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/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Doubles.o -index-unit-output-path /Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Doubles.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling Algebra.swift, Arrays.swift, Comparable.swift (in target 'Physical' from project 'Physical')
SwiftCompile normal arm64 Compiling\ PhysicalTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/PhysicalTests.swift (in target 'PhysicalTests' from project 'Physical')
    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/Tests/PhysicalTests/Arrays.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/Doubles.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/PhysicalTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/Temperatures.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/XCTestManifests.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/dBTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.dia -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/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PhysicalTests -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/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.o -index-unit-output-path /Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.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/Tests/PhysicalTests/PhysicalTests.swift (in target 'PhysicalTests' from project 'Physical')
    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/Tests/PhysicalTests/Arrays.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/Doubles.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/PhysicalTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/Temperatures.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/XCTestManifests.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/dBTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.dia -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/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PhysicalTests -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/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.o -index-unit-output-path /Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling PhysicalFunctions.swift, PhysicalStatistics.swift (in target 'Physical' from project 'Physical')
SwiftCompile normal arm64 Compiling\ XCTestManifests.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/XCTestManifests.swift (in target 'PhysicalTests' from project 'Physical')
    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/Tests/PhysicalTests/Arrays.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/Doubles.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/PhysicalTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/Temperatures.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/XCTestManifests.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/dBTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/XCTestManifests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/XCTestManifests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/XCTestManifests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/XCTestManifests.dia -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/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PhysicalTests -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/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/XCTestManifests.o -index-unit-output-path /Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/XCTestManifests.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/Tests/PhysicalTests/XCTestManifests.swift (in target 'PhysicalTests' from project 'Physical')
    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/Tests/PhysicalTests/Arrays.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/Doubles.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/PhysicalTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/Temperatures.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/XCTestManifests.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/dBTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/XCTestManifests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/XCTestManifests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/XCTestManifests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/XCTestManifests.dia -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/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PhysicalTests -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/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/XCTestManifests.o -index-unit-output-path /Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/XCTestManifests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ Temperatures.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/Temperatures.swift (in target 'PhysicalTests' from project 'Physical')
    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/Tests/PhysicalTests/Arrays.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/Doubles.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/PhysicalTests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/Temperatures.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/XCTestManifests.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/dBTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Temperatures.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Temperatures.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Temperatures.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Temperatures.dia -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/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PhysicalTests -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/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Temperatures.o -index-unit-output-path /Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Temperatures.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/Tests/PhysicalTests/Temperatures.swift (in target 'PhysicalTests' from project 'Physical')
    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/Tests/PhysicalTests/Arrays.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/Doubles.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/PhysicalTests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/Temperatures.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/XCTestManifests.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/dBTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Temperatures.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Temperatures.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Temperatures.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Temperatures.dia -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/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PhysicalTests -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/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Temperatures.o -index-unit-output-path /Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Temperatures.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling Numerics.swift, Operators.swift, Physical.swift (in target 'Physical' from project 'Physical')
SwiftCompile normal arm64 Compiling\ Arrays.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/Arrays.swift (in target 'PhysicalTests' from project 'Physical')
    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/Tests/PhysicalTests/Arrays.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/Doubles.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/PhysicalTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/Temperatures.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/XCTestManifests.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/dBTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Arrays.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Arrays.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Arrays.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Arrays.dia -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/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PhysicalTests -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/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Arrays.o -index-unit-output-path /Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Arrays.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/Tests/PhysicalTests/Arrays.swift (in target 'PhysicalTests' from project 'Physical')
    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/Tests/PhysicalTests/Arrays.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/Doubles.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/PhysicalTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/Temperatures.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/XCTestManifests.swift /Users/admin/builder/spi-builder-workspace/Tests/PhysicalTests/dBTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Arrays.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Arrays.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Arrays.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Arrays.dia -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/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PhysicalTests -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/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Arrays.o -index-unit-output-path /Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/Arrays.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling FloatingPointUnits.swift, PhysicalConversionType.swift, PhysicalUnits.swift (in target 'Physical' from project 'Physical')
SwiftDriverJobDiscovery normal arm64 Compiling UnitStructs.swift, dB.swift (in target 'Physical' from project 'Physical')
SwiftDriverJobDiscovery normal arm64 Compiling Globals.swift, Metadata.swift, PhysicalArrays.swift (in target 'Physical' from project 'Physical')
SwiftDriverJobDiscovery normal arm64 Compiling Units.swift, Constants.swift, Experiments.swift (in target 'Physical' from project 'Physical')
SwiftDriver\ Compilation Physical normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Physical' from project 'Physical')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Physical -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Physical.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -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 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Physical-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Physical.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Physical_const_extract_protocols.json -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/Physical.build/Debug-xros/Physical.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Physical-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Physical.o normal (in target 'Physical' from project 'Physical')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-xros1.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Physical.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Physical_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/xros -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Physical.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Physical_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Physical.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Physical.o (in target 'Physical' from project 'Physical')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Physical.o
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PhysicalTests.xctest/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/empty-PhysicalTests.plist (in target 'PhysicalTests' from project 'Physical')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/empty-PhysicalTests.plist -producttype com.apple.product-type.bundle.unit-test -expandbuildsettings -format binary -platform xros -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PhysicalTests.xctest/Info.plist
SwiftDriverJobDiscovery normal arm64 Compiling XCTestManifests.swift (in target 'PhysicalTests' from project 'Physical')
SwiftDriverJobDiscovery normal arm64 Emitting module for PhysicalTests (in target 'PhysicalTests' from project 'Physical')
SwiftDriver\ Compilation\ Requirements PhysicalTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'PhysicalTests' from project 'Physical')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name PhysicalTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -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 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests_const_extract_protocols.json -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/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PhysicalTests.swiftmodule/arm64-apple-xros.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.swiftmodule (in target 'PhysicalTests' from project 'Physical')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PhysicalTests.swiftmodule/arm64-apple-xros.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PhysicalTests.swiftmodule/arm64-apple-xros.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.abi.json (in target 'PhysicalTests' from project 'Physical')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PhysicalTests.swiftmodule/arm64-apple-xros.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PhysicalTests.swiftmodule/arm64-apple-xros.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.swiftdoc (in target 'PhysicalTests' from project 'Physical')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PhysicalTests.swiftmodule/arm64-apple-xros.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PhysicalTests.swiftmodule/Project/arm64-apple-xros.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.swiftsourceinfo (in target 'PhysicalTests' from project 'Physical')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PhysicalTests.swiftmodule/Project/arm64-apple-xros.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling Doubles.swift (in target 'PhysicalTests' from project 'Physical')
SwiftDriverJobDiscovery normal arm64 Compiling Arrays.swift (in target 'PhysicalTests' from project 'Physical')
SwiftDriverJobDiscovery normal arm64 Compiling Temperatures.swift (in target 'PhysicalTests' from project 'Physical')
SwiftDriverJobDiscovery normal arm64 Compiling dBTests.swift (in target 'PhysicalTests' from project 'Physical')
SwiftDriverJobDiscovery normal arm64 Compiling PhysicalTests.swift (in target 'PhysicalTests' from project 'Physical')
SwiftDriver\ Compilation PhysicalTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'PhysicalTests' from project 'Physical')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name PhysicalTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -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 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests_const_extract_protocols.json -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/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PhysicalTests.xctest/PhysicalTests normal (in target 'PhysicalTests' from project 'Physical')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-xros1.0 -bundle -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -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 -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.LinkFileList -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/../Frameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/xros -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.swiftmodule -Wl,-no_warn_duplicate_libraries -framework XCTest -lXCTestSwiftSupport -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PhysicalTests.xctest/PhysicalTests -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/Physical.build/Objects-normal/arm64/Physical.swiftmodule
GenerateDSYMFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PhysicalTests.xctest.dSYM /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PhysicalTests.xctest/PhysicalTests (in target 'PhysicalTests' from project 'Physical')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PhysicalTests.xctest/PhysicalTests -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PhysicalTests.xctest.dSYM
ExtractAppIntentsMetadata (in target 'PhysicalTests' from project 'Physical')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PhysicalTests.xctest --toolchain-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name PhysicalTests --sdk-root /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk --xcode-version 16B40 --platform-family xrOS --deployment-target 1.0 --bundle-identifier spi-builder-workspace.PhysicalTests --target-triple arm64-apple-xros1.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PhysicalTests.xctest/PhysicalTests --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/PhysicalTests.DependencyMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/Objects-normal/arm64/PhysicalTests.SwiftConstValuesFileList --compile-time-extraction --deployment-aware-processing --validate-assistant-intents
note: Metadata extraction skipped. No AppIntents.framework dependency found. (in target 'PhysicalTests' from project 'Physical')
CopySwiftLibs /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PhysicalTests.xctest (in target 'PhysicalTests' from project 'Physical')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftStdLibTool --copy --verbose --scan-executable /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PhysicalTests.xctest/PhysicalTests --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PhysicalTests.xctest/Frameworks --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PhysicalTests.xctest/PlugIns --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PhysicalTests.xctest/SystemExtensions --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PhysicalTests.xctest/Extensions --platform xros --toolchain /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PhysicalTests.xctest/Frameworks --strip-bitcode --scan-executable /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/libXCTestSwiftSupport.dylib --strip-bitcode-tool /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip --emit-dependency-info /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Physical.build/Debug-xros/PhysicalTests.build/SwiftStdLibToolInputDependencies.dep --filter-for-swift-os
Ignoring --strip-bitcode because --sign was not passed
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PhysicalTests.xctest (in target 'PhysicalTests' from project 'Physical')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PhysicalTests.xctest
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PhysicalTests.xctest (in target 'PhysicalTests' from project 'Physical')
    cd /Users/admin/builder/spi-builder-workspace
    /usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PhysicalTests.xctest
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Physical",
  "name" : "Physical",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "4.0"
    }
  ],
  "products" : [
    {
      "name" : "Physical",
      "targets" : [
        "Physical"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "PhysicalTests",
      "module_type" : "SwiftTarget",
      "name" : "PhysicalTests",
      "path" : "Tests/PhysicalTests",
      "sources" : [
        "Arrays.swift",
        "Doubles.swift",
        "PhysicalTests.swift",
        "Temperatures.swift",
        "XCTestManifests.swift",
        "dBTests.swift"
      ],
      "target_dependencies" : [
        "Physical"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Physical",
      "module_type" : "SwiftTarget",
      "name" : "Physical",
      "path" : "Sources/Physical",
      "product_memberships" : [
        "Physical"
      ],
      "sources" : [
        "Core/Generated/FloatingPointUnits.swift",
        "Core/Generated/PhysicalConversionType.swift",
        "Core/Generated/PhysicalUnits.swift",
        "Core/Numerics.swift",
        "Core/Operators.swift",
        "Core/Physical.swift",
        "Core/Physical/Algebra.swift",
        "Core/Physical/Arrays.swift",
        "Core/Physical/Comparable.swift",
        "Core/Physical/Composition.swift",
        "Core/Physical/Conversions.swift",
        "Core/Physical/Description.swift",
        "Core/Physical/Equatable.swift",
        "Core/Physical/Inits.swift",
        "Core/Physical/Miscellaneous.swift",
        "Core/Physical/NotAThing.swift",
        "Core/TieredNumber.swift",
        "Core/Undetermined/Dimension.swift",
        "Core/Undetermined/Units.swift",
        "Experimental/Constants.swift",
        "Experimental/Experiments.swift",
        "Experimental/Globals.swift",
        "Experimental/Metadata.swift",
        "Experimental/PhysicalArrays.swift",
        "Experimental/PhysicalFunctions.swift",
        "Experimental/PhysicalStatistics.swift",
        "Experimental/UnitStructs.swift",
        "Experimental/dB.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.2"
}
Done.