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

Failed to build EnvironmentOverrides, reference master (d0b763), with Swift 6.0 for visionOS using Xcode 16.0 on 1 Nov 2024 19:42:04 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme EnvironmentOverrides -destination generic/platform=xrOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:65:16: warning: static property 'supportedLocales' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var supportedLocales: [Locale] = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:65:16: note: convert 'supportedLocales' to a 'let' constant to make 'Sendable' shared state immutable
    static var supportedLocales: [Locale] = {
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:65:16: note: annotate 'supportedLocales' with '@MainActor' if property should only be accessed from the main actor
    static var supportedLocales: [Locale] = {
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:65:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var supportedLocales: [Locale] = {
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:10:13: warning: capture of 'toValue' with non-sendable type '(Value) -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            toValue(self.wrappedValue)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:10:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            toValue(self.wrappedValue)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:10:21: warning: capture of 'self' with non-sendable type 'Binding<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            toValue(self.wrappedValue)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:12:13: warning: capture of 'self' with non-sendable type 'Binding<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            self.wrappedValue = fromValue(value)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:12:33: warning: capture of 'fromValue' with non-sendable type '(T) -> Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            self.wrappedValue = fromValue(value)
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:12:33: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            self.wrappedValue = fromValue(value)
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:18:13: warning: capture of 'self' with non-sendable type 'Binding<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            self.wrappedValue
            ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:20:13: warning: capture of 'self' with non-sendable type 'Binding<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            self.wrappedValue = value
            ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:21:13: warning: capture of 'perform' with non-sendable type '(Value) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            perform(value)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:21:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            perform(value)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:102:54: error: 'UIScreen' is unavailable in visionOS
        let renderer = UIGraphicsImageRenderer(size: UIScreen.main.bounds.size)
                                                     ^~~~~~~~
UIKit.UIScreen:2:23: note: 'UIScreen' has been explicitly marked unavailable here
@MainActor open class UIScreen : NSObject, UITraitEnvironment {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:104:34: warning: 'windows' was deprecated in visionOS 1.0: Use UIWindowScene.windows on a relevant window scene instead
            UIApplication.shared.windows
                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:102:68: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        let renderer = UIGraphicsImageRenderer(size: UIScreen.main.bounds.size)
                                                                   ^
UIKit.UIScreen:10:14: note: property declared here
    open var bounds: CGRect { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:100:17: note: add '@MainActor' to make static method 'takeScreenshot()' part of global actor 'MainActor'
    static func takeScreenshot() -> Bool {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:102:63: warning: main actor-isolated class property 'main' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        let renderer = UIGraphicsImageRenderer(size: UIScreen.main.bounds.size)
                                                              ^
UIKit.UIScreen:6:20: note: class property declared here
    open class var main: UIScreen { get }
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:100:17: note: add '@MainActor' to make static method 'takeScreenshot()' part of global actor 'MainActor'
    static func takeScreenshot() -> Bool {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:104:34: warning: main actor-isolated property 'windows' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            UIApplication.shared.windows
                                 ^
UIKit.UIApplication:34:25: note: property declared here
    @MainActor open var windows: [UIWindow] { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:104:27: warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            UIApplication.shared.windows
                          ^
UIKit.UIApplication:3:20: note: class property declared here
    open class var shared: UIApplication { get }
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:105:34: warning: main actor-isolated property 'windowLevel' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                .sorted(by: { $0.windowLevel.rawValue < $1.windowLevel.rawValue })
                                 ^
UIKit.UIWindow:10:25: note: property declared here
    @MainActor open var windowLevel: UIWindow.Level { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:105:60: warning: main actor-isolated property 'windowLevel' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                .sorted(by: { $0.windowLevel.rawValue < $1.windowLevel.rawValue })
                                                           ^
UIKit.UIWindow:10:25: note: property declared here
    @MainActor open var windowLevel: UIWindow.Level { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:107:28: warning: call to main actor-isolated instance method 'drawHierarchy(in:afterScreenUpdates:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                    window.drawHierarchy(in: window.frame, afterScreenUpdates: false)
                           ^
UIKit.UIView:13:26: note: calls to instance method 'drawHierarchy(in:afterScreenUpdates:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func drawHierarchy(in rect: CGRect, afterScreenUpdates afterUpdates: Bool) -> Bool
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:107:53: warning: main actor-isolated property 'frame' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                    window.drawHierarchy(in: window.frame, afterScreenUpdates: false)
                                                    ^
UIKit.UIView:2:25: note: property declared here
    @MainActor open var frame: CGRect { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:122:9: error: 'UINotificationFeedbackGenerator' is unavailable in visionOS
        UINotificationFeedbackGenerator().notificationOccurred(.success)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
UIKit.UINotificationFeedbackGenerator:2:23: note: 'UINotificationFeedbackGenerator' has been explicitly marked unavailable here
@MainActor open class UINotificationFeedbackGenerator : UIFeedbackGenerator {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:122:43: warning: call to main actor-isolated instance method 'notificationOccurred' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        UINotificationFeedbackGenerator().notificationOccurred(.success)
                                          ^
UIKit.UINotificationFeedbackGenerator:3:26: note: calls to instance method 'notificationOccurred' from outside of its actor context are implicitly asynchronous
    @MainActor open func notificationOccurred(_ notificationType: UINotificationFeedbackGenerator.FeedbackType)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:120:17: note: add '@MainActor' to make static method 'successFeedback()' part of global actor 'MainActor'
    static func successFeedback() {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:122:9: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        UINotificationFeedbackGenerator().notificationOccurred(.success)
        ^
UIKit.UINotificationFeedbackGenerator:14:23: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
    @MainActor public init()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:120:17: note: add '@MainActor' to make static method 'successFeedback()' part of global actor 'MainActor'
    static func successFeedback() {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:128:9: error: 'UINotificationFeedbackGenerator' is unavailable in visionOS
        UINotificationFeedbackGenerator().notificationOccurred(.error)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
UIKit.UINotificationFeedbackGenerator:2:23: note: 'UINotificationFeedbackGenerator' has been explicitly marked unavailable here
@MainActor open class UINotificationFeedbackGenerator : UIFeedbackGenerator {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:128:43: warning: call to main actor-isolated instance method 'notificationOccurred' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        UINotificationFeedbackGenerator().notificationOccurred(.error)
                                          ^
UIKit.UINotificationFeedbackGenerator:3:26: note: calls to instance method 'notificationOccurred' from outside of its actor context are implicitly asynchronous
    @MainActor open func notificationOccurred(_ notificationType: UINotificationFeedbackGenerator.FeedbackType)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:126:17: note: add '@MainActor' to make static method 'errorFeedback()' part of global actor 'MainActor'
    static func errorFeedback() {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:128:9: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        UINotificationFeedbackGenerator().notificationOccurred(.error)
        ^
UIKit.UINotificationFeedbackGenerator:14:23: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
    @MainActor public init()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:126:17: note: add '@MainActor' to make static method 'errorFeedback()' part of global actor 'MainActor'
    static func errorFeedback() {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:134:9: error: 'UIImpactFeedbackGenerator' is unavailable in visionOS
        UIImpactFeedbackGenerator(style: .medium).impactOccurred()
        ^~~~~~~~~~~~~~~~~~~~~~~~~
UIKit.UIImpactFeedbackGenerator:2:23: note: 'UIImpactFeedbackGenerator' has been explicitly marked unavailable here
@MainActor open class UIImpactFeedbackGenerator : UIFeedbackGenerator {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:134:51: warning: call to main actor-isolated instance method 'impactOccurred()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        UIImpactFeedbackGenerator(style: .medium).impactOccurred()
                                                  ^
UIKit.UIImpactFeedbackGenerator:8:26: note: calls to instance method 'impactOccurred()' from outside of its actor context are implicitly asynchronous
    @MainActor open func impactOccurred()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:132:17: note: add '@MainActor' to make static method 'toggleFeedback()' part of global actor 'MainActor'
    static func toggleFeedback() {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:134:9: warning: call to main actor-isolated initializer 'init(style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        UIImpactFeedbackGenerator(style: .medium).impactOccurred()
        ^
UIKit.UIImpactFeedbackGenerator:25:23: note: calls to initializer 'init(style:)' from outside of its actor context are implicitly asynchronous
    @MainActor public init(style: UIImpactFeedbackGenerator.FeedbackStyle)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:132:17: note: add '@MainActor' to make static method 'toggleFeedback()' part of global actor 'MainActor'
    static func toggleFeedback() {
                ^
    @MainActor
SwiftCompile normal arm64 Compiling\ BaseView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/BaseView.swift (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
    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/Sources/EnvironmentOverrides/BaseView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/BaseView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/BaseView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/BaseView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/BaseView.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 -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EnvironmentOverrides -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/BaseView.o -index-unit-output-path /EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/BaseView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/BaseView.swift (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
    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/Sources/EnvironmentOverrides/BaseView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/BaseView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/BaseView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/BaseView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/BaseView.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 -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EnvironmentOverrides -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/BaseView.o -index-unit-output-path /EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/BaseView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ SettingsView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsView.swift (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
    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/Sources/EnvironmentOverrides/BaseView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsView.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 -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EnvironmentOverrides -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsView.o -index-unit-output-path /EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsView.swift (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
    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/EnvironmentOverrides/BaseView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsView.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 -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EnvironmentOverrides -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsView.o -index-unit-output-path /EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift:81:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var defaultValue: CGFloat = 300
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift:81:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
        static var defaultValue: CGFloat = 300
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift:81:20: note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
        static var defaultValue: CGFloat = 300
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift:81:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var defaultValue: CGFloat = 300
                   ^
        nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ SettingsElements.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
    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/Sources/EnvironmentOverrides/BaseView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsElements.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsElements.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsElements.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsElements.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 -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EnvironmentOverrides -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsElements.o -index-unit-output-path /EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsElements.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
    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/EnvironmentOverrides/BaseView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsElements.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsElements.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsElements.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsElements.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 -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EnvironmentOverrides -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsElements.o -index-unit-output-path /EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsElements.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift:81:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var defaultValue: CGFloat = 300
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift:81:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
        static var defaultValue: CGFloat = 300
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift:81:20: note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
        static var defaultValue: CGFloat = 300
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift:81:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var defaultValue: CGFloat = 300
                   ^
        nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ EnvironmentOverridesView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
    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/Sources/EnvironmentOverrides/BaseView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverridesView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverridesView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverridesView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverridesView.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 -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EnvironmentOverrides -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverridesView.o -index-unit-output-path /EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverridesView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
    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/EnvironmentOverrides/BaseView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverridesView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverridesView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverridesView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverridesView.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 -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EnvironmentOverrides -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverridesView.o -index-unit-output-path /EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverridesView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:11:27: warning: static property 'locale' is not concurrency-safe because non-'Sendable' type 'EnvironmentValues.Diff' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let locale = Diff(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:4:12: note: consider making struct 'Diff' conform to the 'Sendable' protocol
    struct Diff: OptionSet {
           ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:11:27: note: annotate 'locale' with '@MainActor' if property should only be accessed from the main actor
        public static let locale = Diff(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:11:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let locale = Diff(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:12:27: warning: static property 'colorScheme' is not concurrency-safe because non-'Sendable' type 'EnvironmentValues.Diff' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let colorScheme = Diff(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:4:12: note: consider making struct 'Diff' conform to the 'Sendable' protocol
    struct Diff: OptionSet {
           ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:12:27: note: annotate 'colorScheme' with '@MainActor' if property should only be accessed from the main actor
        public static let colorScheme = Diff(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:12:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let colorScheme = Diff(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:13:27: warning: static property 'sizeCategory' is not concurrency-safe because non-'Sendable' type 'EnvironmentValues.Diff' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let sizeCategory = Diff(rawValue: 1 << 2)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:4:12: note: consider making struct 'Diff' conform to the 'Sendable' protocol
    struct Diff: OptionSet {
           ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:13:27: note: annotate 'sizeCategory' with '@MainActor' if property should only be accessed from the main actor
        public static let sizeCategory = Diff(rawValue: 1 << 2)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:13:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let sizeCategory = Diff(rawValue: 1 << 2)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:14:27: warning: static property 'layoutDirection' is not concurrency-safe because non-'Sendable' type 'EnvironmentValues.Diff' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let layoutDirection = Diff(rawValue: 1 << 3)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:4:12: note: consider making struct 'Diff' conform to the 'Sendable' protocol
    struct Diff: OptionSet {
           ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:14:27: note: annotate 'layoutDirection' with '@MainActor' if property should only be accessed from the main actor
        public static let layoutDirection = Diff(rawValue: 1 << 3)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:14:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let layoutDirection = Diff(rawValue: 1 << 3)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:15:27: warning: static property 'accessibilityEnabled' is not concurrency-safe because non-'Sendable' type 'EnvironmentValues.Diff' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let accessibilityEnabled = Diff(rawValue: 1 << 4)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:4:12: note: consider making struct 'Diff' conform to the 'Sendable' protocol
    struct Diff: OptionSet {
           ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:15:27: note: annotate 'accessibilityEnabled' with '@MainActor' if property should only be accessed from the main actor
        public static let accessibilityEnabled = Diff(rawValue: 1 << 4)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:15:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let accessibilityEnabled = Diff(rawValue: 1 << 4)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:65:16: warning: static property 'supportedLocales' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var supportedLocales: [Locale] = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:65:16: note: convert 'supportedLocales' to a 'let' constant to make 'Sendable' shared state immutable
    static var supportedLocales: [Locale] = {
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:65:16: note: annotate 'supportedLocales' with '@MainActor' if property should only be accessed from the main actor
    static var supportedLocales: [Locale] = {
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:65:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var supportedLocales: [Locale] = {
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:110:34: warning: 'animation' was deprecated in visionOS 1.0: Use withAnimation or animation(_:value:) instead.
        opacity(display ? 1 : 0).animation(display ?
                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:160:26: warning: capture of 'value' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
        self.init(get: { value }, set: { value = $0 })
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:160:26: warning: reference to captured var 'value' in concurrently-executing code; this is an error in the Swift 6 language mode
        self.init(get: { value }, set: { value = $0 })
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:160:42: warning: capture of 'value' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
        self.init(get: { value }, set: { value = $0 })
                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:160:42: warning: mutation of captured var 'value' in concurrently-executing code; this is an error in the Swift 6 language mode
        self.init(get: { value }, set: { value = $0 })
                                         ^
SwiftDriverJobDiscovery normal arm64 Emitting module for EnvironmentOverrides (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
SwiftDriver\ Compilation\ Requirements EnvironmentOverrides normal arm64 com.apple.xcode.tools.swift.compiler (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
    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 EnvironmentOverrides -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides-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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides.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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides_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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides-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/EnvironmentOverrides-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides-Swift.h (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros/EnvironmentOverrides-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/EnvironmentOverrides.swiftmodule/arm64-apple-xros.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides.swiftmodule (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
    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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/EnvironmentOverrides.swiftmodule/arm64-apple-xros.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/EnvironmentOverrides.swiftmodule/arm64-apple-xros.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides.abi.json (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
    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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/EnvironmentOverrides.swiftmodule/arm64-apple-xros.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/EnvironmentOverrides.swiftmodule/Project/arm64-apple-xros.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides.swiftsourceinfo (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
    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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/EnvironmentOverrides.swiftmodule/Project/arm64-apple-xros.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/EnvironmentOverrides.swiftmodule/arm64-apple-xros.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides.swiftdoc (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
    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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/EnvironmentOverrides.swiftmodule/arm64-apple-xros.swiftdoc
** BUILD FAILED **
The following build commands failed:
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
	SwiftCompile normal arm64 Compiling\ GeneralHelpers.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
	Building workspace spi-builder-workspace with scheme EnvironmentOverrides
(3 failures)
Command line invocation:
    /Applications/Xcode-16.1.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData build -scheme EnvironmentOverrides -destination generic/platform=xrOS "OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete"
User defaults from command line:
    IDEClonedSourcePackagesDirPathOverride = /Users/admin/builder/spi-builder-workspace/.dependencies
    IDEDerivedDataPathOverride = /Users/admin/builder/spi-builder-workspace/.derivedData
    IDEPackageSupportUseBuiltinSCM = YES
Build settings from command line:
    OTHER_SWIFT_FLAGS = -stats-output-dir .stats -strict-concurrency=complete
Resolve Package Graph
Resolved source packages:
  EnvironmentOverrides: /Users/admin/builder/spi-builder-workspace
Prepare packages
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (2 targets)
    Target 'EnvironmentOverrides' in project 'EnvironmentOverrides'
        ➜ Explicit dependency on target 'EnvironmentOverrides' in project 'EnvironmentOverrides'
    Target 'EnvironmentOverrides' in project 'EnvironmentOverrides' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
ClangStatCache /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -o /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache
SwiftDriver EnvironmentOverrides normal arm64 com.apple.xcode.tools.swift.compiler (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
    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 EnvironmentOverrides -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides-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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides.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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides_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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ EnvironmentOverrides (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
    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/Sources/EnvironmentOverrides/BaseView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsView.swift -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EnvironmentOverrides -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides.abi.json
EmitSwiftModule normal arm64 (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
    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/Sources/EnvironmentOverrides/BaseView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsView.swift -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EnvironmentOverrides -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides.abi.json
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:11:27: warning: static property 'locale' is not concurrency-safe because non-'Sendable' type 'EnvironmentValues.Diff' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let locale = Diff(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:4:12: note: consider making struct 'Diff' conform to the 'Sendable' protocol
    struct Diff: OptionSet {
           ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:11:27: note: annotate 'locale' with '@MainActor' if property should only be accessed from the main actor
        public static let locale = Diff(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:11:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let locale = Diff(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:12:27: warning: static property 'colorScheme' is not concurrency-safe because non-'Sendable' type 'EnvironmentValues.Diff' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let colorScheme = Diff(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:4:12: note: consider making struct 'Diff' conform to the 'Sendable' protocol
    struct Diff: OptionSet {
           ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:12:27: note: annotate 'colorScheme' with '@MainActor' if property should only be accessed from the main actor
        public static let colorScheme = Diff(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:12:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let colorScheme = Diff(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:13:27: warning: static property 'sizeCategory' is not concurrency-safe because non-'Sendable' type 'EnvironmentValues.Diff' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let sizeCategory = Diff(rawValue: 1 << 2)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:4:12: note: consider making struct 'Diff' conform to the 'Sendable' protocol
    struct Diff: OptionSet {
           ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:13:27: note: annotate 'sizeCategory' with '@MainActor' if property should only be accessed from the main actor
        public static let sizeCategory = Diff(rawValue: 1 << 2)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:13:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let sizeCategory = Diff(rawValue: 1 << 2)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:14:27: warning: static property 'layoutDirection' is not concurrency-safe because non-'Sendable' type 'EnvironmentValues.Diff' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let layoutDirection = Diff(rawValue: 1 << 3)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:4:12: note: consider making struct 'Diff' conform to the 'Sendable' protocol
    struct Diff: OptionSet {
           ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:14:27: note: annotate 'layoutDirection' with '@MainActor' if property should only be accessed from the main actor
        public static let layoutDirection = Diff(rawValue: 1 << 3)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:14:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let layoutDirection = Diff(rawValue: 1 << 3)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:15:27: warning: static property 'accessibilityEnabled' is not concurrency-safe because non-'Sendable' type 'EnvironmentValues.Diff' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let accessibilityEnabled = Diff(rawValue: 1 << 4)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:4:12: note: consider making struct 'Diff' conform to the 'Sendable' protocol
    struct Diff: OptionSet {
           ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:15:27: note: annotate 'accessibilityEnabled' with '@MainActor' if property should only be accessed from the main actor
        public static let accessibilityEnabled = Diff(rawValue: 1 << 4)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift:15:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let accessibilityEnabled = Diff(rawValue: 1 << 4)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:65:16: warning: static property 'supportedLocales' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var supportedLocales: [Locale] = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:65:16: note: convert 'supportedLocales' to a 'let' constant to make 'Sendable' shared state immutable
    static var supportedLocales: [Locale] = {
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:65:16: note: annotate 'supportedLocales' with '@MainActor' if property should only be accessed from the main actor
    static var supportedLocales: [Locale] = {
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:65:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var supportedLocales: [Locale] = {
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift:81:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var defaultValue: CGFloat = 300
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift:81:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
        static var defaultValue: CGFloat = 300
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift:81:20: note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
        static var defaultValue: CGFloat = 300
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift:81:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var defaultValue: CGFloat = 300
                   ^
        nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ GeneralHelpers.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
    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/Sources/EnvironmentOverrides/BaseView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/GeneralHelpers.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/GeneralHelpers.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/GeneralHelpers.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/GeneralHelpers.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 -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EnvironmentOverrides -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/GeneralHelpers.o -index-unit-output-path /EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/GeneralHelpers.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
    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/EnvironmentOverrides/BaseView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/GeneralHelpers.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/GeneralHelpers.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/GeneralHelpers.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/GeneralHelpers.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 -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EnvironmentOverrides -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/GeneralHelpers.o -index-unit-output-path /EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/GeneralHelpers.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:65:16: warning: static property 'supportedLocales' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var supportedLocales: [Locale] = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:65:16: note: convert 'supportedLocales' to a 'let' constant to make 'Sendable' shared state immutable
    static var supportedLocales: [Locale] = {
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:65:16: note: annotate 'supportedLocales' with '@MainActor' if property should only be accessed from the main actor
    static var supportedLocales: [Locale] = {
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:65:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var supportedLocales: [Locale] = {
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:10:13: warning: capture of 'toValue' with non-sendable type '(Value) -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            toValue(self.wrappedValue)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:10:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            toValue(self.wrappedValue)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:10:21: warning: capture of 'self' with non-sendable type 'Binding<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            toValue(self.wrappedValue)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:12:13: warning: capture of 'self' with non-sendable type 'Binding<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            self.wrappedValue = fromValue(value)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:12:33: warning: capture of 'fromValue' with non-sendable type '(T) -> Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            self.wrappedValue = fromValue(value)
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:12:33: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            self.wrappedValue = fromValue(value)
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:18:13: warning: capture of 'self' with non-sendable type 'Binding<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            self.wrappedValue
            ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:20:13: warning: capture of 'self' with non-sendable type 'Binding<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            self.wrappedValue = value
            ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:21:13: warning: capture of 'perform' with non-sendable type '(Value) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            perform(value)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:21:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            perform(value)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:102:54: error: 'UIScreen' is unavailable in visionOS
        let renderer = UIGraphicsImageRenderer(size: UIScreen.main.bounds.size)
                                                     ^~~~~~~~
UIKit.UIScreen:2:23: note: 'UIScreen' has been explicitly marked unavailable here
@MainActor open class UIScreen : NSObject, UITraitEnvironment {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:104:34: warning: 'windows' was deprecated in visionOS 1.0: Use UIWindowScene.windows on a relevant window scene instead
            UIApplication.shared.windows
                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:102:68: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        let renderer = UIGraphicsImageRenderer(size: UIScreen.main.bounds.size)
                                                                   ^
UIKit.UIScreen:10:14: note: property declared here
    open var bounds: CGRect { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:100:17: note: add '@MainActor' to make static method 'takeScreenshot()' part of global actor 'MainActor'
    static func takeScreenshot() -> Bool {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:102:63: warning: main actor-isolated class property 'main' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        let renderer = UIGraphicsImageRenderer(size: UIScreen.main.bounds.size)
                                                              ^
UIKit.UIScreen:6:20: note: class property declared here
    open class var main: UIScreen { get }
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:100:17: note: add '@MainActor' to make static method 'takeScreenshot()' part of global actor 'MainActor'
    static func takeScreenshot() -> Bool {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:104:34: warning: main actor-isolated property 'windows' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            UIApplication.shared.windows
                                 ^
UIKit.UIApplication:34:25: note: property declared here
    @MainActor open var windows: [UIWindow] { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:104:27: warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            UIApplication.shared.windows
                          ^
UIKit.UIApplication:3:20: note: class property declared here
    open class var shared: UIApplication { get }
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:105:34: warning: main actor-isolated property 'windowLevel' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                .sorted(by: { $0.windowLevel.rawValue < $1.windowLevel.rawValue })
                                 ^
UIKit.UIWindow:10:25: note: property declared here
    @MainActor open var windowLevel: UIWindow.Level { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:105:60: warning: main actor-isolated property 'windowLevel' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                .sorted(by: { $0.windowLevel.rawValue < $1.windowLevel.rawValue })
                                                           ^
UIKit.UIWindow:10:25: note: property declared here
    @MainActor open var windowLevel: UIWindow.Level { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:107:28: warning: call to main actor-isolated instance method 'drawHierarchy(in:afterScreenUpdates:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                    window.drawHierarchy(in: window.frame, afterScreenUpdates: false)
                           ^
UIKit.UIView:13:26: note: calls to instance method 'drawHierarchy(in:afterScreenUpdates:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func drawHierarchy(in rect: CGRect, afterScreenUpdates afterUpdates: Bool) -> Bool
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:107:53: warning: main actor-isolated property 'frame' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                    window.drawHierarchy(in: window.frame, afterScreenUpdates: false)
                                                    ^
UIKit.UIView:2:25: note: property declared here
    @MainActor open var frame: CGRect { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:122:9: error: 'UINotificationFeedbackGenerator' is unavailable in visionOS
        UINotificationFeedbackGenerator().notificationOccurred(.success)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
UIKit.UINotificationFeedbackGenerator:2:23: note: 'UINotificationFeedbackGenerator' has been explicitly marked unavailable here
@MainActor open class UINotificationFeedbackGenerator : UIFeedbackGenerator {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:122:43: warning: call to main actor-isolated instance method 'notificationOccurred' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        UINotificationFeedbackGenerator().notificationOccurred(.success)
                                          ^
UIKit.UINotificationFeedbackGenerator:3:26: note: calls to instance method 'notificationOccurred' from outside of its actor context are implicitly asynchronous
    @MainActor open func notificationOccurred(_ notificationType: UINotificationFeedbackGenerator.FeedbackType)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:120:17: note: add '@MainActor' to make static method 'successFeedback()' part of global actor 'MainActor'
    static func successFeedback() {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:122:9: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        UINotificationFeedbackGenerator().notificationOccurred(.success)
        ^
UIKit.UINotificationFeedbackGenerator:14:23: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
    @MainActor public init()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:120:17: note: add '@MainActor' to make static method 'successFeedback()' part of global actor 'MainActor'
    static func successFeedback() {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:128:9: error: 'UINotificationFeedbackGenerator' is unavailable in visionOS
        UINotificationFeedbackGenerator().notificationOccurred(.error)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
UIKit.UINotificationFeedbackGenerator:2:23: note: 'UINotificationFeedbackGenerator' has been explicitly marked unavailable here
@MainActor open class UINotificationFeedbackGenerator : UIFeedbackGenerator {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:128:43: warning: call to main actor-isolated instance method 'notificationOccurred' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        UINotificationFeedbackGenerator().notificationOccurred(.error)
                                          ^
UIKit.UINotificationFeedbackGenerator:3:26: note: calls to instance method 'notificationOccurred' from outside of its actor context are implicitly asynchronous
    @MainActor open func notificationOccurred(_ notificationType: UINotificationFeedbackGenerator.FeedbackType)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:126:17: note: add '@MainActor' to make static method 'errorFeedback()' part of global actor 'MainActor'
    static func errorFeedback() {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:128:9: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        UINotificationFeedbackGenerator().notificationOccurred(.error)
        ^
UIKit.UINotificationFeedbackGenerator:14:23: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
    @MainActor public init()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:126:17: note: add '@MainActor' to make static method 'errorFeedback()' part of global actor 'MainActor'
    static func errorFeedback() {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:134:9: error: 'UIImpactFeedbackGenerator' is unavailable in visionOS
        UIImpactFeedbackGenerator(style: .medium).impactOccurred()
        ^~~~~~~~~~~~~~~~~~~~~~~~~
UIKit.UIImpactFeedbackGenerator:2:23: note: 'UIImpactFeedbackGenerator' has been explicitly marked unavailable here
@MainActor open class UIImpactFeedbackGenerator : UIFeedbackGenerator {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:134:51: warning: call to main actor-isolated instance method 'impactOccurred()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        UIImpactFeedbackGenerator(style: .medium).impactOccurred()
                                                  ^
UIKit.UIImpactFeedbackGenerator:8:26: note: calls to instance method 'impactOccurred()' from outside of its actor context are implicitly asynchronous
    @MainActor open func impactOccurred()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:132:17: note: add '@MainActor' to make static method 'toggleFeedback()' part of global actor 'MainActor'
    static func toggleFeedback() {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:134:9: warning: call to main actor-isolated initializer 'init(style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        UIImpactFeedbackGenerator(style: .medium).impactOccurred()
        ^
UIKit.UIImpactFeedbackGenerator:25:23: note: calls to initializer 'init(style:)' from outside of its actor context are implicitly asynchronous
    @MainActor public init(style: UIImpactFeedbackGenerator.FeedbackStyle)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift:132:17: note: add '@MainActor' to make static method 'toggleFeedback()' part of global actor 'MainActor'
    static func toggleFeedback() {
                ^
    @MainActor
SwiftCompile normal arm64 Compiling\ BaseView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/BaseView.swift (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
    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/Sources/EnvironmentOverrides/BaseView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/BaseView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/BaseView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/BaseView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/BaseView.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 -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EnvironmentOverrides -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/BaseView.o -index-unit-output-path /EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/BaseView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/BaseView.swift (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
    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/Sources/EnvironmentOverrides/BaseView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/BaseView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/BaseView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/BaseView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/BaseView.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 -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EnvironmentOverrides -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/BaseView.o -index-unit-output-path /EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/BaseView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ SettingsView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsView.swift (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
    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/Sources/EnvironmentOverrides/BaseView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsView.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 -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EnvironmentOverrides -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsView.o -index-unit-output-path /EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsView.swift (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
    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/EnvironmentOverrides/BaseView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsView.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 -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EnvironmentOverrides -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsView.o -index-unit-output-path /EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ EnvironmentOverridesView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
    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/Sources/EnvironmentOverrides/BaseView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverridesView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverridesView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverridesView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverridesView.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 -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EnvironmentOverrides -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverridesView.o -index-unit-output-path /EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverridesView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
    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/EnvironmentOverrides/BaseView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverridesView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverridesView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverridesView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverridesView.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 -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EnvironmentOverrides -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverridesView.o -index-unit-output-path /EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverridesView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ SettingsElements.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
    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/Sources/EnvironmentOverrides/BaseView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsElements.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsElements.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsElements.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsElements.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 -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EnvironmentOverrides -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsElements.o -index-unit-output-path /EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsElements.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
    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/EnvironmentOverrides/BaseView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/EnvironmentOverridesView.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsElements.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/SettingsView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsElements.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsElements.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsElements.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsElements.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 -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/EnvironmentOverrides_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EnvironmentOverrides -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/EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsElements.o -index-unit-output-path /EnvironmentOverrides.build/Debug-xros/EnvironmentOverrides.build/Objects-normal/arm64/SettingsElements.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
** BUILD FAILED **
The following build commands failed:
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
	SwiftCompile normal arm64 Compiling\ GeneralHelpers.swift /Users/admin/builder/spi-builder-workspace/Sources/EnvironmentOverrides/GeneralHelpers.swift (in target 'EnvironmentOverrides' from project 'EnvironmentOverrides')
	Building workspace spi-builder-workspace with scheme EnvironmentOverrides
(3 failures)
BUILD FAILURE 6.0 visionOS