Build Information
Successful build of NiceNotifications, reference main (dc2487
), with Swift 6.0 for watchOS using Xcode 16.2 on 29 Nov 2024 07:26:17 UTC.
Swift 6 data race errors: 36
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme NiceNotifications -destination generic/platform=watchOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Build Log
public static var info: (Any) -> () = { _ in }
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:14:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var info: (Any) -> () = { _ in }
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:47:27: warning: static property 'askSystemPermissionIfNeeded' is not concurrency-safe because non-'Sendable' type 'LocalNotifications.PermissionStrategy' may have shared mutable state; this is an error in the Swift 6 language mode
public static let askSystemPermissionIfNeeded = PermissionStrategy(
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:19:19: note: consider making struct 'PermissionStrategy' conform to the 'Sendable' protocol
public struct PermissionStrategy {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:47:27: note: annotate 'askSystemPermissionIfNeeded' with '@MainActor' if property should only be accessed from the main actor
public static let askSystemPermissionIfNeeded = PermissionStrategy(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:47:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let askSystemPermissionIfNeeded = PermissionStrategy(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:52:27: warning: static property 'scheduleIfSystemAllowed' is not concurrency-safe because non-'Sendable' type 'LocalNotifications.PermissionStrategy' may have shared mutable state; this is an error in the Swift 6 language mode
public static let scheduleIfSystemAllowed = PermissionStrategy(
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:19:19: note: consider making struct 'PermissionStrategy' conform to the 'Sendable' protocol
public struct PermissionStrategy {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:52:27: note: annotate 'scheduleIfSystemAllowed' with '@MainActor' if property should only be accessed from the main actor
public static let scheduleIfSystemAllowed = PermissionStrategy(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:52:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let scheduleIfSystemAllowed = PermissionStrategy(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:86:27: warning: static property 'addNotificationRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var addNotificationRequest = UNUserNotificationCenter.current().add
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:86:27: note: convert 'addNotificationRequest' to a 'let' constant to make 'Sendable' shared state immutable
public static var addNotificationRequest = UNUserNotificationCenter.current().add
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:86:27: note: annotate 'addNotificationRequest' with '@MainActor' if property should only be accessed from the main actor
public static var addNotificationRequest = UNUserNotificationCenter.current().add
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:86:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var addNotificationRequest = UNUserNotificationCenter.current().add
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:87:27: warning: static property 'removeDeliveredNotifications' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var removeDeliveredNotifications = UNUserNotificationCenter.current().removeDeliveredNotifications
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:87:27: note: convert 'removeDeliveredNotifications' to a 'let' constant to make 'Sendable' shared state immutable
public static var removeDeliveredNotifications = UNUserNotificationCenter.current().removeDeliveredNotifications
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:87:27: note: annotate 'removeDeliveredNotifications' with '@MainActor' if property should only be accessed from the main actor
public static var removeDeliveredNotifications = UNUserNotificationCenter.current().removeDeliveredNotifications
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:87:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var removeDeliveredNotifications = UNUserNotificationCenter.current().removeDeliveredNotifications
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:88:27: warning: static property 'removePendingNotificationRequests' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var removePendingNotificationRequests = UNUserNotificationCenter.current().removePendingNotificationRequests
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:88:27: note: convert 'removePendingNotificationRequests' to a 'let' constant to make 'Sendable' shared state immutable
public static var removePendingNotificationRequests = UNUserNotificationCenter.current().removePendingNotificationRequests
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:88:27: note: annotate 'removePendingNotificationRequests' with '@MainActor' if property should only be accessed from the main actor
public static var removePendingNotificationRequests = UNUserNotificationCenter.current().removePendingNotificationRequests
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:88:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var removePendingNotificationRequests = UNUserNotificationCenter.current().removePendingNotificationRequests
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:89:27: warning: static property 'getPendingNotificationRequests' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var getPendingNotificationRequests = UNUserNotificationCenter.current().getPendingNotificationRequests
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:89:27: note: convert 'getPendingNotificationRequests' to a 'let' constant to make 'Sendable' shared state immutable
public static var getPendingNotificationRequests = UNUserNotificationCenter.current().getPendingNotificationRequests
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:89:27: note: annotate 'getPendingNotificationRequests' with '@MainActor' if property should only be accessed from the main actor
public static var getPendingNotificationRequests = UNUserNotificationCenter.current().getPendingNotificationRequests
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:89:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var getPendingNotificationRequests = UNUserNotificationCenter.current().getPendingNotificationRequests
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:90:27: warning: static property 'getDeliveredNotifications' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var getDeliveredNotifications = UNUserNotificationCenter.current().getDeliveredNotifications
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:90:27: note: convert 'getDeliveredNotifications' to a 'let' constant to make 'Sendable' shared state immutable
public static var getDeliveredNotifications = UNUserNotificationCenter.current().getDeliveredNotifications
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:90:27: note: annotate 'getDeliveredNotifications' with '@MainActor' if property should only be accessed from the main actor
public static var getDeliveredNotifications = UNUserNotificationCenter.current().getDeliveredNotifications
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:90:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var getDeliveredNotifications = UNUserNotificationCenter.current().getDeliveredNotifications
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:432:31: warning: static property 'valueForKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var valueForKey = UserDefaults.standard.value(forKey:)
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:432:31: note: convert 'valueForKey' to a 'let' constant to make 'Sendable' shared state immutable
public static var valueForKey = UserDefaults.standard.value(forKey:)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:432:31: note: annotate 'valueForKey' with '@MainActor' if property should only be accessed from the main actor
public static var valueForKey = UserDefaults.standard.value(forKey:)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:432:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var valueForKey = UserDefaults.standard.value(forKey:)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:433:31: warning: static property 'setValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var setValue = UserDefaults.standard.setValue(_:forKey:)
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:433:31: note: convert 'setValue' to a 'let' constant to make 'Sendable' shared state immutable
public static var setValue = UserDefaults.standard.setValue(_:forKey:)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:433:31: note: annotate 'setValue' with '@MainActor' if property should only be accessed from the main actor
public static var setValue = UserDefaults.standard.setValue(_:forKey:)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:433:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var setValue = UserDefaults.standard.setValue(_:forKey:)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:476:31: warning: static property 'getNotificationSettings' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var getNotificationSettings = UNUserNotificationCenter.current().getNotificationSettings
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:476:31: note: convert 'getNotificationSettings' to a 'let' constant to make 'Sendable' shared state immutable
public static var getNotificationSettings = UNUserNotificationCenter.current().getNotificationSettings
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:476:31: note: annotate 'getNotificationSettings' with '@MainActor' if property should only be accessed from the main actor
public static var getNotificationSettings = UNUserNotificationCenter.current().getNotificationSettings
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:476:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var getNotificationSettings = UNUserNotificationCenter.current().getNotificationSettings
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:477:31: warning: static property 'requestAuthorization' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var requestAuthorization = UNUserNotificationCenter.current().requestAuthorization
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:477:31: note: convert 'requestAuthorization' to a 'let' constant to make 'Sendable' shared state immutable
public static var requestAuthorization = UNUserNotificationCenter.current().requestAuthorization
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:477:31: note: annotate 'requestAuthorization' with '@MainActor' if property should only be accessed from the main actor
public static var requestAuthorization = UNUserNotificationCenter.current().requestAuthorization
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:477:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var requestAuthorization = UNUserNotificationCenter.current().requestAuthorization
^
nonisolated(unsafe)
SwiftCompile normal armv7k Compiling\ NotificationPermissionView.swift /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NotificationPermissionView.swift (in target 'NiceNotifications' from project 'NiceNotifications')
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/NiceNotifications/NiceNotifications.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NotificationPermissionView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NotificationPermissionView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NotificationPermissionView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NotificationPermissionView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NotificationPermissionView.dia -target armv7k-apple-watchos4.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.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 -profile-generate -profile-coverage-mapping -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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name NiceNotifications -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NotificationPermissionView.o -index-unit-output-path /NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NotificationPermissionView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NotificationPermissionView.swift (in target 'NiceNotifications' from project 'NiceNotifications')
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/NiceNotifications/NiceNotifications.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NotificationPermissionView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NotificationPermissionView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NotificationPermissionView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NotificationPermissionView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NotificationPermissionView.dia -target armv7k-apple-watchos4.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.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 -profile-generate -profile-coverage-mapping -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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name NiceNotifications -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NotificationPermissionView.o -index-unit-output-path /NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NotificationPermissionView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 Compiling\ NiceNotifications.swift /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift (in target 'NiceNotifications' from project 'NiceNotifications')
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/NiceNotifications/NiceNotifications.swift /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NotificationPermissionView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.dia -target arm64_32-apple-watchos4.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.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 -profile-generate -profile-coverage-mapping -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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name NiceNotifications -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.o -index-unit-output-path /NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift (in target 'NiceNotifications' from project 'NiceNotifications')
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/NiceNotifications/NiceNotifications.swift /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NotificationPermissionView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.dia -target arm64_32-apple-watchos4.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.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 -profile-generate -profile-coverage-mapping -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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name NiceNotifications -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.o -index-unit-output-path /NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:805:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
@_functionBuilder
^~~~~~~~~~~~~~~~
resultBuilder
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:14:27: warning: static property 'info' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var info: (Any) -> () = { _ in }
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:14:27: note: convert 'info' to a 'let' constant to make 'Sendable' shared state immutable
public static var info: (Any) -> () = { _ in }
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:14:27: note: annotate 'info' with '@MainActor' if property should only be accessed from the main actor
public static var info: (Any) -> () = { _ in }
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:14:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var info: (Any) -> () = { _ in }
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:47:27: warning: static property 'askSystemPermissionIfNeeded' is not concurrency-safe because non-'Sendable' type 'LocalNotifications.PermissionStrategy' may have shared mutable state; this is an error in the Swift 6 language mode
public static let askSystemPermissionIfNeeded = PermissionStrategy(
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:19:19: note: consider making struct 'PermissionStrategy' conform to the 'Sendable' protocol
public struct PermissionStrategy {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:47:27: note: annotate 'askSystemPermissionIfNeeded' with '@MainActor' if property should only be accessed from the main actor
public static let askSystemPermissionIfNeeded = PermissionStrategy(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:47:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let askSystemPermissionIfNeeded = PermissionStrategy(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:52:27: warning: static property 'scheduleIfSystemAllowed' is not concurrency-safe because non-'Sendable' type 'LocalNotifications.PermissionStrategy' may have shared mutable state; this is an error in the Swift 6 language mode
public static let scheduleIfSystemAllowed = PermissionStrategy(
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:19:19: note: consider making struct 'PermissionStrategy' conform to the 'Sendable' protocol
public struct PermissionStrategy {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:52:27: note: annotate 'scheduleIfSystemAllowed' with '@MainActor' if property should only be accessed from the main actor
public static let scheduleIfSystemAllowed = PermissionStrategy(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:52:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let scheduleIfSystemAllowed = PermissionStrategy(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:86:27: warning: static property 'addNotificationRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var addNotificationRequest = UNUserNotificationCenter.current().add
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:86:27: note: convert 'addNotificationRequest' to a 'let' constant to make 'Sendable' shared state immutable
public static var addNotificationRequest = UNUserNotificationCenter.current().add
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:86:27: note: annotate 'addNotificationRequest' with '@MainActor' if property should only be accessed from the main actor
public static var addNotificationRequest = UNUserNotificationCenter.current().add
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:86:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var addNotificationRequest = UNUserNotificationCenter.current().add
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:87:27: warning: static property 'removeDeliveredNotifications' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var removeDeliveredNotifications = UNUserNotificationCenter.current().removeDeliveredNotifications
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:87:27: note: convert 'removeDeliveredNotifications' to a 'let' constant to make 'Sendable' shared state immutable
public static var removeDeliveredNotifications = UNUserNotificationCenter.current().removeDeliveredNotifications
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:87:27: note: annotate 'removeDeliveredNotifications' with '@MainActor' if property should only be accessed from the main actor
public static var removeDeliveredNotifications = UNUserNotificationCenter.current().removeDeliveredNotifications
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:87:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var removeDeliveredNotifications = UNUserNotificationCenter.current().removeDeliveredNotifications
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:88:27: warning: static property 'removePendingNotificationRequests' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var removePendingNotificationRequests = UNUserNotificationCenter.current().removePendingNotificationRequests
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:88:27: note: convert 'removePendingNotificationRequests' to a 'let' constant to make 'Sendable' shared state immutable
public static var removePendingNotificationRequests = UNUserNotificationCenter.current().removePendingNotificationRequests
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:88:27: note: annotate 'removePendingNotificationRequests' with '@MainActor' if property should only be accessed from the main actor
public static var removePendingNotificationRequests = UNUserNotificationCenter.current().removePendingNotificationRequests
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:88:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var removePendingNotificationRequests = UNUserNotificationCenter.current().removePendingNotificationRequests
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:89:27: warning: static property 'getPendingNotificationRequests' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var getPendingNotificationRequests = UNUserNotificationCenter.current().getPendingNotificationRequests
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:89:27: note: convert 'getPendingNotificationRequests' to a 'let' constant to make 'Sendable' shared state immutable
public static var getPendingNotificationRequests = UNUserNotificationCenter.current().getPendingNotificationRequests
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:89:27: note: annotate 'getPendingNotificationRequests' with '@MainActor' if property should only be accessed from the main actor
public static var getPendingNotificationRequests = UNUserNotificationCenter.current().getPendingNotificationRequests
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:89:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var getPendingNotificationRequests = UNUserNotificationCenter.current().getPendingNotificationRequests
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:90:27: warning: static property 'getDeliveredNotifications' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var getDeliveredNotifications = UNUserNotificationCenter.current().getDeliveredNotifications
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:90:27: note: convert 'getDeliveredNotifications' to a 'let' constant to make 'Sendable' shared state immutable
public static var getDeliveredNotifications = UNUserNotificationCenter.current().getDeliveredNotifications
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:90:27: note: annotate 'getDeliveredNotifications' with '@MainActor' if property should only be accessed from the main actor
public static var getDeliveredNotifications = UNUserNotificationCenter.current().getDeliveredNotifications
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:90:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var getDeliveredNotifications = UNUserNotificationCenter.current().getDeliveredNotifications
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:432:31: warning: static property 'valueForKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var valueForKey = UserDefaults.standard.value(forKey:)
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:432:31: note: convert 'valueForKey' to a 'let' constant to make 'Sendable' shared state immutable
public static var valueForKey = UserDefaults.standard.value(forKey:)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:432:31: note: annotate 'valueForKey' with '@MainActor' if property should only be accessed from the main actor
public static var valueForKey = UserDefaults.standard.value(forKey:)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:432:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var valueForKey = UserDefaults.standard.value(forKey:)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:433:31: warning: static property 'setValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var setValue = UserDefaults.standard.setValue(_:forKey:)
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:433:31: note: convert 'setValue' to a 'let' constant to make 'Sendable' shared state immutable
public static var setValue = UserDefaults.standard.setValue(_:forKey:)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:433:31: note: annotate 'setValue' with '@MainActor' if property should only be accessed from the main actor
public static var setValue = UserDefaults.standard.setValue(_:forKey:)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:433:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var setValue = UserDefaults.standard.setValue(_:forKey:)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:476:31: warning: static property 'getNotificationSettings' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var getNotificationSettings = UNUserNotificationCenter.current().getNotificationSettings
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:476:31: note: convert 'getNotificationSettings' to a 'let' constant to make 'Sendable' shared state immutable
public static var getNotificationSettings = UNUserNotificationCenter.current().getNotificationSettings
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:476:31: note: annotate 'getNotificationSettings' with '@MainActor' if property should only be accessed from the main actor
public static var getNotificationSettings = UNUserNotificationCenter.current().getNotificationSettings
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:476:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var getNotificationSettings = UNUserNotificationCenter.current().getNotificationSettings
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:477:31: warning: static property 'requestAuthorization' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var requestAuthorization = UNUserNotificationCenter.current().requestAuthorization
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:477:31: note: convert 'requestAuthorization' to a 'let' constant to make 'Sendable' shared state immutable
public static var requestAuthorization = UNUserNotificationCenter.current().requestAuthorization
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:477:31: note: annotate 'requestAuthorization' with '@MainActor' if property should only be accessed from the main actor
public static var requestAuthorization = UNUserNotificationCenter.current().requestAuthorization
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:477:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var requestAuthorization = UNUserNotificationCenter.current().requestAuthorization
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:243:55: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
? { DispatchQueue.main.async(execute: performScheduleInCurrentContext) }
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:106:17: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
completion(status)
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:106:17: note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
completion(status)
^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:106:28: warning: sending 'status' risks causing data races; this is an error in the Swift 6 language mode
completion(status)
~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:106:28: note: task-isolated 'status' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
completion(status)
^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:225:40: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
DispatchQueue.main.async { completion(val) }
~~^~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:225:40: note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
DispatchQueue.main.async { completion(val) }
^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:225:51: warning: sending 'val' risks causing data races; this is an error in the Swift 6 language mode
DispatchQueue.main.async { completion(val) }
~~~~~~~~~~~~~^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:225:51: note: task-isolated 'val' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
DispatchQueue.main.async { completion(val) }
^~~
SwiftCompile normal armv7k Compiling\ NiceNotifications.swift /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift (in target 'NiceNotifications' from project 'NiceNotifications')
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/NiceNotifications/NiceNotifications.swift /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NotificationPermissionView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.dia -target armv7k-apple-watchos4.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.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 -profile-generate -profile-coverage-mapping -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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name NiceNotifications -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.o -index-unit-output-path /NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift (in target 'NiceNotifications' from project 'NiceNotifications')
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/NiceNotifications/NiceNotifications.swift /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NotificationPermissionView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.dia -target armv7k-apple-watchos4.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.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 -profile-generate -profile-coverage-mapping -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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name NiceNotifications -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.o -index-unit-output-path /NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:805:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
@_functionBuilder
^~~~~~~~~~~~~~~~
resultBuilder
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:14:27: warning: static property 'info' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var info: (Any) -> () = { _ in }
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:14:27: note: convert 'info' to a 'let' constant to make 'Sendable' shared state immutable
public static var info: (Any) -> () = { _ in }
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:14:27: note: annotate 'info' with '@MainActor' if property should only be accessed from the main actor
public static var info: (Any) -> () = { _ in }
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:14:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var info: (Any) -> () = { _ in }
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:47:27: warning: static property 'askSystemPermissionIfNeeded' is not concurrency-safe because non-'Sendable' type 'LocalNotifications.PermissionStrategy' may have shared mutable state; this is an error in the Swift 6 language mode
public static let askSystemPermissionIfNeeded = PermissionStrategy(
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:19:19: note: consider making struct 'PermissionStrategy' conform to the 'Sendable' protocol
public struct PermissionStrategy {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:47:27: note: annotate 'askSystemPermissionIfNeeded' with '@MainActor' if property should only be accessed from the main actor
public static let askSystemPermissionIfNeeded = PermissionStrategy(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:47:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let askSystemPermissionIfNeeded = PermissionStrategy(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:52:27: warning: static property 'scheduleIfSystemAllowed' is not concurrency-safe because non-'Sendable' type 'LocalNotifications.PermissionStrategy' may have shared mutable state; this is an error in the Swift 6 language mode
public static let scheduleIfSystemAllowed = PermissionStrategy(
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:19:19: note: consider making struct 'PermissionStrategy' conform to the 'Sendable' protocol
public struct PermissionStrategy {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:52:27: note: annotate 'scheduleIfSystemAllowed' with '@MainActor' if property should only be accessed from the main actor
public static let scheduleIfSystemAllowed = PermissionStrategy(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:52:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let scheduleIfSystemAllowed = PermissionStrategy(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:86:27: warning: static property 'addNotificationRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var addNotificationRequest = UNUserNotificationCenter.current().add
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:86:27: note: convert 'addNotificationRequest' to a 'let' constant to make 'Sendable' shared state immutable
public static var addNotificationRequest = UNUserNotificationCenter.current().add
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:86:27: note: annotate 'addNotificationRequest' with '@MainActor' if property should only be accessed from the main actor
public static var addNotificationRequest = UNUserNotificationCenter.current().add
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:86:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var addNotificationRequest = UNUserNotificationCenter.current().add
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:87:27: warning: static property 'removeDeliveredNotifications' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var removeDeliveredNotifications = UNUserNotificationCenter.current().removeDeliveredNotifications
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:87:27: note: convert 'removeDeliveredNotifications' to a 'let' constant to make 'Sendable' shared state immutable
public static var removeDeliveredNotifications = UNUserNotificationCenter.current().removeDeliveredNotifications
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:87:27: note: annotate 'removeDeliveredNotifications' with '@MainActor' if property should only be accessed from the main actor
public static var removeDeliveredNotifications = UNUserNotificationCenter.current().removeDeliveredNotifications
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:87:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var removeDeliveredNotifications = UNUserNotificationCenter.current().removeDeliveredNotifications
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:88:27: warning: static property 'removePendingNotificationRequests' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var removePendingNotificationRequests = UNUserNotificationCenter.current().removePendingNotificationRequests
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:88:27: note: convert 'removePendingNotificationRequests' to a 'let' constant to make 'Sendable' shared state immutable
public static var removePendingNotificationRequests = UNUserNotificationCenter.current().removePendingNotificationRequests
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:88:27: note: annotate 'removePendingNotificationRequests' with '@MainActor' if property should only be accessed from the main actor
public static var removePendingNotificationRequests = UNUserNotificationCenter.current().removePendingNotificationRequests
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:88:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var removePendingNotificationRequests = UNUserNotificationCenter.current().removePendingNotificationRequests
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:89:27: warning: static property 'getPendingNotificationRequests' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var getPendingNotificationRequests = UNUserNotificationCenter.current().getPendingNotificationRequests
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:89:27: note: convert 'getPendingNotificationRequests' to a 'let' constant to make 'Sendable' shared state immutable
public static var getPendingNotificationRequests = UNUserNotificationCenter.current().getPendingNotificationRequests
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:89:27: note: annotate 'getPendingNotificationRequests' with '@MainActor' if property should only be accessed from the main actor
public static var getPendingNotificationRequests = UNUserNotificationCenter.current().getPendingNotificationRequests
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:89:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var getPendingNotificationRequests = UNUserNotificationCenter.current().getPendingNotificationRequests
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:90:27: warning: static property 'getDeliveredNotifications' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var getDeliveredNotifications = UNUserNotificationCenter.current().getDeliveredNotifications
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:90:27: note: convert 'getDeliveredNotifications' to a 'let' constant to make 'Sendable' shared state immutable
public static var getDeliveredNotifications = UNUserNotificationCenter.current().getDeliveredNotifications
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:90:27: note: annotate 'getDeliveredNotifications' with '@MainActor' if property should only be accessed from the main actor
public static var getDeliveredNotifications = UNUserNotificationCenter.current().getDeliveredNotifications
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:90:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var getDeliveredNotifications = UNUserNotificationCenter.current().getDeliveredNotifications
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:432:31: warning: static property 'valueForKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var valueForKey = UserDefaults.standard.value(forKey:)
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:432:31: note: convert 'valueForKey' to a 'let' constant to make 'Sendable' shared state immutable
public static var valueForKey = UserDefaults.standard.value(forKey:)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:432:31: note: annotate 'valueForKey' with '@MainActor' if property should only be accessed from the main actor
public static var valueForKey = UserDefaults.standard.value(forKey:)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:432:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var valueForKey = UserDefaults.standard.value(forKey:)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:433:31: warning: static property 'setValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var setValue = UserDefaults.standard.setValue(_:forKey:)
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:433:31: note: convert 'setValue' to a 'let' constant to make 'Sendable' shared state immutable
public static var setValue = UserDefaults.standard.setValue(_:forKey:)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:433:31: note: annotate 'setValue' with '@MainActor' if property should only be accessed from the main actor
public static var setValue = UserDefaults.standard.setValue(_:forKey:)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:433:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var setValue = UserDefaults.standard.setValue(_:forKey:)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:476:31: warning: static property 'getNotificationSettings' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var getNotificationSettings = UNUserNotificationCenter.current().getNotificationSettings
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:476:31: note: convert 'getNotificationSettings' to a 'let' constant to make 'Sendable' shared state immutable
public static var getNotificationSettings = UNUserNotificationCenter.current().getNotificationSettings
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:476:31: note: annotate 'getNotificationSettings' with '@MainActor' if property should only be accessed from the main actor
public static var getNotificationSettings = UNUserNotificationCenter.current().getNotificationSettings
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:476:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var getNotificationSettings = UNUserNotificationCenter.current().getNotificationSettings
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:477:31: warning: static property 'requestAuthorization' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var requestAuthorization = UNUserNotificationCenter.current().requestAuthorization
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:477:31: note: convert 'requestAuthorization' to a 'let' constant to make 'Sendable' shared state immutable
public static var requestAuthorization = UNUserNotificationCenter.current().requestAuthorization
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:477:31: note: annotate 'requestAuthorization' with '@MainActor' if property should only be accessed from the main actor
public static var requestAuthorization = UNUserNotificationCenter.current().requestAuthorization
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:477:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var requestAuthorization = UNUserNotificationCenter.current().requestAuthorization
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:243:55: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
? { DispatchQueue.main.async(execute: performScheduleInCurrentContext) }
^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:106:17: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
completion(status)
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:106:17: note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
completion(status)
^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:106:28: warning: sending 'status' risks causing data races; this is an error in the Swift 6 language mode
completion(status)
~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:106:28: note: task-isolated 'status' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
completion(status)
^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:225:40: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
DispatchQueue.main.async { completion(val) }
~~^~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:225:40: note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
DispatchQueue.main.async { completion(val) }
^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:225:51: warning: sending 'val' risks causing data races; this is an error in the Swift 6 language mode
DispatchQueue.main.async { completion(val) }
~~~~~~~~~~~~~^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:225:51: note: task-isolated 'val' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
DispatchQueue.main.async { completion(val) }
^~~
SwiftDriverJobDiscovery normal arm64 Emitting module for NiceNotifications (in target 'NiceNotifications' from project 'NiceNotifications')
SwiftCompile normal arm64_32 Compiling\ NotificationPermissionView.swift /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NotificationPermissionView.swift (in target 'NiceNotifications' from project 'NiceNotifications')
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/NiceNotifications/NiceNotifications.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NotificationPermissionView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NotificationPermissionView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NotificationPermissionView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NotificationPermissionView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NotificationPermissionView.dia -target arm64_32-apple-watchos4.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.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 -profile-generate -profile-coverage-mapping -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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name NiceNotifications -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NotificationPermissionView.o -index-unit-output-path /NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NotificationPermissionView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NotificationPermissionView.swift (in target 'NiceNotifications' from project 'NiceNotifications')
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/NiceNotifications/NiceNotifications.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NotificationPermissionView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NotificationPermissionView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NotificationPermissionView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NotificationPermissionView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NotificationPermissionView.dia -target arm64_32-apple-watchos4.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.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 -profile-generate -profile-coverage-mapping -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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name NiceNotifications -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NotificationPermissionView.o -index-unit-output-path /NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NotificationPermissionView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal armv7k Emitting module for NiceNotifications (in target 'NiceNotifications' from project 'NiceNotifications')
SwiftDriver\ Compilation\ Requirements NiceNotifications normal arm64 com.apple.xcode.tools.swift.compiler (in target 'NiceNotifications' from project 'NiceNotifications')
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 NiceNotifications -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -target arm64-apple-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -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-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications-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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation\ Requirements NiceNotifications normal armv7k com.apple.xcode.tools.swift.compiler (in target 'NiceNotifications' from project 'NiceNotifications')
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 NiceNotifications -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -target armv7k-apple-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -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-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications-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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.swiftmodule (in target 'NiceNotifications' from project 'NiceNotifications')
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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/arm64-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.swiftmodule (in target 'NiceNotifications' from project 'NiceNotifications')
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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/armv7k-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.swiftdoc (in target 'NiceNotifications' from project 'NiceNotifications')
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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/armv7k-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.abi.json (in target 'NiceNotifications' from project 'NiceNotifications')
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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.swiftdoc (in target 'NiceNotifications' from project 'NiceNotifications')
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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.abi.json (in target 'NiceNotifications' from project 'NiceNotifications')
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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.swiftsourceinfo (in target 'NiceNotifications' from project 'NiceNotifications')
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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.swiftsourceinfo (in target 'NiceNotifications' from project 'NiceNotifications')
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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftCompile normal arm64 Compiling\ NotificationPermissionView.swift /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NotificationPermissionView.swift (in target 'NiceNotifications' from project 'NiceNotifications')
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/NiceNotifications/NiceNotifications.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NotificationPermissionView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NotificationPermissionView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NotificationPermissionView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NotificationPermissionView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NotificationPermissionView.dia -target arm64-apple-watchos4.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.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 -profile-generate -profile-coverage-mapping -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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name NiceNotifications -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NotificationPermissionView.o -index-unit-output-path /NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NotificationPermissionView.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/NiceNotifications/NotificationPermissionView.swift (in target 'NiceNotifications' from project 'NiceNotifications')
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/NiceNotifications/NiceNotifications.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NotificationPermissionView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NotificationPermissionView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NotificationPermissionView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NotificationPermissionView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NotificationPermissionView.dia -target arm64-apple-watchos4.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.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 -profile-generate -profile-coverage-mapping -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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name NiceNotifications -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NotificationPermissionView.o -index-unit-output-path /NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NotificationPermissionView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64_32 Emitting module for NiceNotifications (in target 'NiceNotifications' from project 'NiceNotifications')
SwiftDriver\ Compilation\ Requirements NiceNotifications normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'NiceNotifications' from project 'NiceNotifications')
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 NiceNotifications -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -target arm64_32-apple-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -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-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications-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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications-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-watchos/NiceNotifications-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications-Swift.h (in target 'NiceNotifications' from project 'NiceNotifications')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/NiceNotifications-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.swiftmodule (in target 'NiceNotifications' from project 'NiceNotifications')
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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.swiftdoc (in target 'NiceNotifications' from project 'NiceNotifications')
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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.abi.json (in target 'NiceNotifications' from project 'NiceNotifications')
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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.swiftsourceinfo (in target 'NiceNotifications' from project 'NiceNotifications')
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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
SwiftDriverJobDiscovery normal armv7k Compiling NotificationPermissionView.swift (in target 'NiceNotifications' from project 'NiceNotifications')
SwiftDriverJobDiscovery normal arm64_32 Compiling NotificationPermissionView.swift (in target 'NiceNotifications' from project 'NiceNotifications')
SwiftDriverJobDiscovery normal arm64 Compiling NotificationPermissionView.swift (in target 'NiceNotifications' from project 'NiceNotifications')
SwiftDriverJobDiscovery normal armv7k Compiling DateBuilder.swift (in target 'DateBuilder' from project 'DateBuilder')
SwiftDriver\ Compilation DateBuilder normal armv7k com.apple.xcode.tools.swift.compiler (in target 'DateBuilder' from project 'DateBuilder')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name DateBuilder -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/armv7k/DateBuilder.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -target armv7k-apple-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -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-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/armv7k/DateBuilder-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/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/armv7k/DateBuilder.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/DateBuilder.build/Debug-watchos/DateBuilder.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/armv7k/DateBuilder_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.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/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/armv7k/DateBuilder-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/armv7k/Binary/DateBuilder.o normal armv7k (in target 'DateBuilder' from project 'DateBuilder')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DateBuilder
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos4.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/armv7k/DateBuilder.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/armv7k/DateBuilder_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/armv7k/DateBuilder.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/armv7k/DateBuilder_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/armv7k/Binary/DateBuilder.o
SwiftDriverJobDiscovery normal arm64 Compiling DateBuilder.swift (in target 'DateBuilder' from project 'DateBuilder')
SwiftDriver\ Compilation DateBuilder normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DateBuilder' from project 'DateBuilder')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name DateBuilder -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64/DateBuilder.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -target arm64-apple-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -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-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64/DateBuilder-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/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64/DateBuilder.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/DateBuilder.build/Debug-watchos/DateBuilder.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64/DateBuilder_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.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/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64/DateBuilder-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64/Binary/DateBuilder.o normal arm64 (in target 'DateBuilder' from project 'DateBuilder')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DateBuilder
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos4.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64/DateBuilder.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64/DateBuilder_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64/DateBuilder.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64/DateBuilder_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64/Binary/DateBuilder.o
SwiftDriverJobDiscovery normal arm64_32 Compiling DateBuilder.swift (in target 'DateBuilder' from project 'DateBuilder')
SwiftDriver\ Compilation DateBuilder normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'DateBuilder' from project 'DateBuilder')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name DateBuilder -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64_32/DateBuilder.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -target arm64_32-apple-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -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-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64_32/DateBuilder-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/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64_32/DateBuilder.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/DateBuilder.build/Debug-watchos/DateBuilder.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64_32/DateBuilder_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.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/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64_32/DateBuilder-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64_32/Binary/DateBuilder.o normal arm64_32 (in target 'DateBuilder' from project 'DateBuilder')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DateBuilder
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos4.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64_32/DateBuilder.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64_32/DateBuilder_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64_32/DateBuilder.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64_32/DateBuilder_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64_32/Binary/DateBuilder.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DateBuilder.o normal arm64\ armv7k\ arm64_32 (in target 'DateBuilder' from project 'DateBuilder')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DateBuilder
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64/Binary/DateBuilder.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/armv7k/Binary/DateBuilder.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64_32/Binary/DateBuilder.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DateBuilder.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DateBuilder.o (in target 'DateBuilder' from project 'DateBuilder')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DateBuilder
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DateBuilder.o
SwiftDriverJobDiscovery normal arm64 Compiling NiceNotifications.swift (in target 'NiceNotifications' from project 'NiceNotifications')
SwiftDriver\ Compilation NiceNotifications normal arm64 com.apple.xcode.tools.swift.compiler (in target 'NiceNotifications' from project 'NiceNotifications')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name NiceNotifications -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -target arm64-apple-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -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-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications-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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/Binary/NiceNotifications.o normal arm64 (in target 'NiceNotifications' from project 'NiceNotifications')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos4.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/Binary/NiceNotifications.o
SwiftDriverJobDiscovery normal armv7k Compiling NiceNotifications.swift (in target 'NiceNotifications' from project 'NiceNotifications')
SwiftDriverJobDiscovery normal arm64_32 Compiling NiceNotifications.swift (in target 'NiceNotifications' from project 'NiceNotifications')
SwiftDriver\ Compilation NiceNotifications normal armv7k com.apple.xcode.tools.swift.compiler (in target 'NiceNotifications' from project 'NiceNotifications')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name NiceNotifications -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -target armv7k-apple-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -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-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications-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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation NiceNotifications normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'NiceNotifications' from project 'NiceNotifications')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name NiceNotifications -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -target arm64_32-apple-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -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-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications-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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/Binary/NiceNotifications.o normal armv7k (in target 'NiceNotifications' from project 'NiceNotifications')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos4.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/Binary/NiceNotifications.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/Binary/NiceNotifications.o normal arm64_32 (in target 'NiceNotifications' from project 'NiceNotifications')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos4.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/Binary/NiceNotifications.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.o normal arm64\ armv7k\ arm64_32 (in target 'NiceNotifications' from project 'NiceNotifications')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/Binary/NiceNotifications.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/Binary/NiceNotifications.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/Binary/NiceNotifications.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.o (in target 'NiceNotifications' from project 'NiceNotifications')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.o
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
{
"identity" : "datebuilder",
"requirement" : {
"range" : [
{
"lower_bound" : "0.1.3",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/dreymonde/DateBuilder"
}
],
"manifest_display_name" : "NiceNotifications",
"name" : "NiceNotifications",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "10.0"
},
{
"name" : "watchos",
"version" : "3.0"
},
{
"name" : "macos",
"version" : "10.14"
}
],
"products" : [
{
"name" : "NiceNotifications",
"targets" : [
"NiceNotifications"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "NiceNotificationsTests",
"module_type" : "SwiftTarget",
"name" : "NiceNotificationsTests",
"path" : "Tests/NiceNotificationsTests",
"sources" : [
"NiceNotificationsTests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"NiceNotifications"
],
"type" : "test"
},
{
"c99name" : "NiceNotifications",
"module_type" : "SwiftTarget",
"name" : "NiceNotifications",
"path" : "Sources/NiceNotifications",
"product_dependencies" : [
"DateBuilder"
],
"product_memberships" : [
"NiceNotifications"
],
"sources" : [
"NiceNotifications.swift",
"NotificationPermissionView.swift"
],
"type" : "library"
}
],
"tools_version" : "5.3"
}
Done.