Build Information
Successful build of SQLiteExpress, reference 1.0.3 (e420f6
), with Swift 6.0 for watchOS using Xcode 16.2 on 29 Nov 2024 13:13:06 UTC.
Swift 6 data race errors: 45
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme SQLiteExpress -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
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:30:23: warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let readOnly = OpenOptions(rawValue: SQLITE_OPEN_READONLY)
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:30:23: note: annotate 'readOnly' with '@MainActor' if property should only be accessed from the main actor
public static let readOnly = OpenOptions(rawValue: SQLITE_OPEN_READONLY)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:30:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let readOnly = OpenOptions(rawValue: SQLITE_OPEN_READONLY)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:31:23: warning: static property 'readWrite' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let readWrite = OpenOptions(rawValue: SQLITE_OPEN_READWRITE)
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:31:23: note: annotate 'readWrite' with '@MainActor' if property should only be accessed from the main actor
public static let readWrite = OpenOptions(rawValue: SQLITE_OPEN_READWRITE)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:31:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let readWrite = OpenOptions(rawValue: SQLITE_OPEN_READWRITE)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:32:23: warning: static property 'create' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let create = OpenOptions(rawValue: SQLITE_OPEN_CREATE)
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:32:23: note: annotate 'create' with '@MainActor' if property should only be accessed from the main actor
public static let create = OpenOptions(rawValue: SQLITE_OPEN_CREATE)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:32:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let create = OpenOptions(rawValue: SQLITE_OPEN_CREATE)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:33:23: warning: static property 'noMutex' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let noMutex = OpenOptions(rawValue: SQLITE_OPEN_NOMUTEX)
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:33:23: note: annotate 'noMutex' with '@MainActor' if property should only be accessed from the main actor
public static let noMutex = OpenOptions(rawValue: SQLITE_OPEN_NOMUTEX)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:33:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let noMutex = OpenOptions(rawValue: SQLITE_OPEN_NOMUTEX)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:34:23: warning: static property 'fullMutex' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let fullMutex = OpenOptions(rawValue: SQLITE_OPEN_FULLMUTEX)
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:34:23: note: annotate 'fullMutex' with '@MainActor' if property should only be accessed from the main actor
public static let fullMutex = OpenOptions(rawValue: SQLITE_OPEN_FULLMUTEX)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let fullMutex = OpenOptions(rawValue: SQLITE_OPEN_FULLMUTEX)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:35:23: warning: static property 'sharedCache' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let sharedCache = OpenOptions(rawValue: SQLITE_OPEN_SHAREDCACHE)
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:35:23: note: annotate 'sharedCache' with '@MainActor' if property should only be accessed from the main actor
public static let sharedCache = OpenOptions(rawValue: SQLITE_OPEN_SHAREDCACHE)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let sharedCache = OpenOptions(rawValue: SQLITE_OPEN_SHAREDCACHE)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:36:23: warning: static property 'privateCache' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let privateCache = OpenOptions(rawValue: SQLITE_OPEN_PRIVATECACHE)
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:36:23: note: annotate 'privateCache' with '@MainActor' if property should only be accessed from the main actor
public static let privateCache = OpenOptions(rawValue: SQLITE_OPEN_PRIVATECACHE)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:36:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let privateCache = OpenOptions(rawValue: SQLITE_OPEN_PRIVATECACHE)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:37:23: warning: static property 'protectionComplete' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let protectionComplete = OpenOptions(rawValue:
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:37:23: note: annotate 'protectionComplete' with '@MainActor' if property should only be accessed from the main actor
public static let protectionComplete = OpenOptions(rawValue:
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:37:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let protectionComplete = OpenOptions(rawValue:
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:39:23: warning: static property 'protectionCompleteUnlessOpen' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let protectionCompleteUnlessOpen = OpenOptions(rawValue:
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:39:23: note: annotate 'protectionCompleteUnlessOpen' with '@MainActor' if property should only be accessed from the main actor
public static let protectionCompleteUnlessOpen = OpenOptions(rawValue:
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:39:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let protectionCompleteUnlessOpen = OpenOptions(rawValue:
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:41:23: warning: static property 'protectionCompleteUntilFirstUserAuth' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let protectionCompleteUntilFirstUserAuth = OpenOptions(rawValue:
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:41:23: note: annotate 'protectionCompleteUntilFirstUserAuth' with '@MainActor' if property should only be accessed from the main actor
public static let protectionCompleteUntilFirstUserAuth = OpenOptions(rawValue:
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:41:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let protectionCompleteUntilFirstUserAuth = OpenOptions(rawValue:
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:43:23: warning: static property 'protectionNone' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let protectionNone = OpenOptions(rawValue: SQLITE_OPEN_FILEPROTECTION_NONE)
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:43:23: note: annotate 'protectionNone' with '@MainActor' if property should only be accessed from the main actor
public static let protectionNone = OpenOptions(rawValue: SQLITE_OPEN_FILEPROTECTION_NONE)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:43:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let protectionNone = OpenOptions(rawValue: SQLITE_OPEN_FILEPROTECTION_NONE)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:44:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let `default`: OpenOptions = [.readWrite, .create]
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:44:23: note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
public static let `default`: OpenOptions = [.readWrite, .create]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:44:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let `default`: OpenOptions = [.readWrite, .create]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:45:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let all: OpenOptions = [.readOnly, .readWrite, .create, .noMutex, .fullMutex,
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:45:23: note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
public static let all: OpenOptions = [.readOnly, .readWrite, .create, .noMutex, .fullMutex,
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:45:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let all: OpenOptions = [.readOnly, .readWrite, .create, .noMutex, .fullMutex,
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ SQLiteType.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteType.swift (in target 'SQLiteExpress' from project 'SQLiteExpress')
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/SQLiteExpress/SQLiteDatabase.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteError.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteStatement.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteType.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteType.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteType.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteType.dia -target arm64-apple-watchos5.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 -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteExpress_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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SQLiteExpress -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteType.o -index-unit-output-path /SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteType.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/SQLiteExpress/SQLiteType.swift (in target 'SQLiteExpress' from project 'SQLiteExpress')
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/SQLiteExpress/SQLiteDatabase.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteError.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteStatement.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteType.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteType.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteType.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteType.dia -target arm64-apple-watchos5.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 -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteExpress_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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SQLiteExpress -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteType.o -index-unit-output-path /SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteType.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ SQLiteStatement.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteStatement.swift (in target 'SQLiteExpress' from project 'SQLiteExpress')
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/SQLiteExpress/SQLiteDatabase.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteError.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteStatement.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteStatement.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteStatement.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteStatement.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteStatement.dia -target arm64-apple-watchos5.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 -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteExpress_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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SQLiteExpress -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteStatement.o -index-unit-output-path /SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteStatement.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/SQLiteExpress/SQLiteStatement.swift (in target 'SQLiteExpress' from project 'SQLiteExpress')
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/SQLiteExpress/SQLiteDatabase.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteError.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteStatement.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteStatement.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteStatement.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteStatement.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteStatement.dia -target arm64-apple-watchos5.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 -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteExpress_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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SQLiteExpress -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteStatement.o -index-unit-output-path /SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteStatement.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteStatement.swift:38:22: warning: static property 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var dateFormatter: DateFormatter = {
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteStatement.swift:38:22: note: convert 'dateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
private static var dateFormatter: DateFormatter = {
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteStatement.swift:38:22: note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
private static var dateFormatter: DateFormatter = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteStatement.swift:38:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var dateFormatter: DateFormatter = {
^
nonisolated(unsafe)
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ SQLiteExpress (in target 'SQLiteExpress' from project 'SQLiteExpress')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteError.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteStatement.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteType.swift -target arm64_32-apple-watchos5.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 -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress_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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SQLiteExpress -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 -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress.abi.json
EmitSwiftModule normal arm64_32 (in target 'SQLiteExpress' from project 'SQLiteExpress')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteError.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteStatement.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteType.swift -target arm64_32-apple-watchos5.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 -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress_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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SQLiteExpress -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 -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress.abi.json
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:30:23: warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let readOnly = OpenOptions(rawValue: SQLITE_OPEN_READONLY)
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:30:23: note: annotate 'readOnly' with '@MainActor' if property should only be accessed from the main actor
public static let readOnly = OpenOptions(rawValue: SQLITE_OPEN_READONLY)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:30:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let readOnly = OpenOptions(rawValue: SQLITE_OPEN_READONLY)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:31:23: warning: static property 'readWrite' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let readWrite = OpenOptions(rawValue: SQLITE_OPEN_READWRITE)
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:31:23: note: annotate 'readWrite' with '@MainActor' if property should only be accessed from the main actor
public static let readWrite = OpenOptions(rawValue: SQLITE_OPEN_READWRITE)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:31:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let readWrite = OpenOptions(rawValue: SQLITE_OPEN_READWRITE)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:32:23: warning: static property 'create' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let create = OpenOptions(rawValue: SQLITE_OPEN_CREATE)
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:32:23: note: annotate 'create' with '@MainActor' if property should only be accessed from the main actor
public static let create = OpenOptions(rawValue: SQLITE_OPEN_CREATE)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:32:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let create = OpenOptions(rawValue: SQLITE_OPEN_CREATE)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:33:23: warning: static property 'noMutex' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let noMutex = OpenOptions(rawValue: SQLITE_OPEN_NOMUTEX)
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:33:23: note: annotate 'noMutex' with '@MainActor' if property should only be accessed from the main actor
public static let noMutex = OpenOptions(rawValue: SQLITE_OPEN_NOMUTEX)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:33:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let noMutex = OpenOptions(rawValue: SQLITE_OPEN_NOMUTEX)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:34:23: warning: static property 'fullMutex' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let fullMutex = OpenOptions(rawValue: SQLITE_OPEN_FULLMUTEX)
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:34:23: note: annotate 'fullMutex' with '@MainActor' if property should only be accessed from the main actor
public static let fullMutex = OpenOptions(rawValue: SQLITE_OPEN_FULLMUTEX)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let fullMutex = OpenOptions(rawValue: SQLITE_OPEN_FULLMUTEX)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:35:23: warning: static property 'sharedCache' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let sharedCache = OpenOptions(rawValue: SQLITE_OPEN_SHAREDCACHE)
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:35:23: note: annotate 'sharedCache' with '@MainActor' if property should only be accessed from the main actor
public static let sharedCache = OpenOptions(rawValue: SQLITE_OPEN_SHAREDCACHE)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let sharedCache = OpenOptions(rawValue: SQLITE_OPEN_SHAREDCACHE)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:36:23: warning: static property 'privateCache' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let privateCache = OpenOptions(rawValue: SQLITE_OPEN_PRIVATECACHE)
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:36:23: note: annotate 'privateCache' with '@MainActor' if property should only be accessed from the main actor
public static let privateCache = OpenOptions(rawValue: SQLITE_OPEN_PRIVATECACHE)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:36:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let privateCache = OpenOptions(rawValue: SQLITE_OPEN_PRIVATECACHE)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:37:23: warning: static property 'protectionComplete' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let protectionComplete = OpenOptions(rawValue:
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:37:23: note: annotate 'protectionComplete' with '@MainActor' if property should only be accessed from the main actor
public static let protectionComplete = OpenOptions(rawValue:
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:37:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let protectionComplete = OpenOptions(rawValue:
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:39:23: warning: static property 'protectionCompleteUnlessOpen' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let protectionCompleteUnlessOpen = OpenOptions(rawValue:
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:39:23: note: annotate 'protectionCompleteUnlessOpen' with '@MainActor' if property should only be accessed from the main actor
public static let protectionCompleteUnlessOpen = OpenOptions(rawValue:
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:39:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let protectionCompleteUnlessOpen = OpenOptions(rawValue:
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:41:23: warning: static property 'protectionCompleteUntilFirstUserAuth' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let protectionCompleteUntilFirstUserAuth = OpenOptions(rawValue:
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:41:23: note: annotate 'protectionCompleteUntilFirstUserAuth' with '@MainActor' if property should only be accessed from the main actor
public static let protectionCompleteUntilFirstUserAuth = OpenOptions(rawValue:
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:41:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let protectionCompleteUntilFirstUserAuth = OpenOptions(rawValue:
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:43:23: warning: static property 'protectionNone' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let protectionNone = OpenOptions(rawValue: SQLITE_OPEN_FILEPROTECTION_NONE)
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:43:23: note: annotate 'protectionNone' with '@MainActor' if property should only be accessed from the main actor
public static let protectionNone = OpenOptions(rawValue: SQLITE_OPEN_FILEPROTECTION_NONE)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:43:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let protectionNone = OpenOptions(rawValue: SQLITE_OPEN_FILEPROTECTION_NONE)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:44:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let `default`: OpenOptions = [.readWrite, .create]
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:44:23: note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
public static let `default`: OpenOptions = [.readWrite, .create]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:44:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let `default`: OpenOptions = [.readWrite, .create]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:45:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let all: OpenOptions = [.readOnly, .readWrite, .create, .noMutex, .fullMutex,
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:45:23: note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
public static let all: OpenOptions = [.readOnly, .readWrite, .create, .noMutex, .fullMutex,
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:45:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let all: OpenOptions = [.readOnly, .readWrite, .create, .noMutex, .fullMutex,
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteError.swift:30:14: warning: stored property 'errorCode' of 'Sendable'-conforming struct 'SQLiteError' has non-sendable type 'SQLiteResultCode'; this is an error in the Swift 6 language mode
public let errorCode: SQLiteResultCode
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteError.swift:81:13: note: consider making enum 'SQLiteResultCode' conform to the 'Sendable' protocol
public enum SQLiteResultCode: Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteStatement.swift:38:22: warning: static property 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var dateFormatter: DateFormatter = {
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteStatement.swift:38:22: note: convert 'dateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
private static var dateFormatter: DateFormatter = {
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteStatement.swift:38:22: note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
private static var dateFormatter: DateFormatter = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteStatement.swift:38:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var dateFormatter: DateFormatter = {
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Emitting module for SQLiteExpress (in target 'SQLiteExpress' from project 'SQLiteExpress')
SwiftCompile normal arm64_32 Compiling\ SQLiteError.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteError.swift (in target 'SQLiteExpress' from project 'SQLiteExpress')
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/SQLiteExpress/SQLiteDatabase.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteError.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteStatement.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteError.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteError.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteError.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteError.dia -target arm64_32-apple-watchos5.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 -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress_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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SQLiteExpress -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteError.o -index-unit-output-path /SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteError.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/SQLiteExpress/SQLiteError.swift (in target 'SQLiteExpress' from project 'SQLiteExpress')
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/SQLiteExpress/SQLiteDatabase.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteError.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteStatement.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteError.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteError.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteError.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteError.dia -target arm64_32-apple-watchos5.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 -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress_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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SQLiteExpress -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteError.o -index-unit-output-path /SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteError.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteError.swift:30:14: warning: stored property 'errorCode' of 'Sendable'-conforming struct 'SQLiteError' has non-sendable type 'SQLiteResultCode'; this is an error in the Swift 6 language mode
public let errorCode: SQLiteResultCode
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteError.swift:81:13: note: consider making enum 'SQLiteResultCode' conform to the 'Sendable' protocol
public enum SQLiteResultCode: Hashable {
^
, Sendable
SwiftDriverJobDiscovery normal armv7k Emitting module for SQLiteExpress (in target 'SQLiteExpress' from project 'SQLiteExpress')
SwiftDriverJobDiscovery normal arm64_32 Emitting module for SQLiteExpress (in target 'SQLiteExpress' from project 'SQLiteExpress')
SwiftDriver\ Compilation\ Requirements SQLiteExpress normal armv7k com.apple.xcode.tools.swift.compiler (in target 'SQLiteExpress' from project 'SQLiteExpress')
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 SQLiteExpress -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/armv7k/SQLiteExpress.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-watchos5.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 -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/armv7k/SQLiteExpress-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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/armv7k/SQLiteExpress.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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/armv7k/SQLiteExpress_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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/armv7k/SQLiteExpress-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation\ Requirements SQLiteExpress normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'SQLiteExpress' from project 'SQLiteExpress')
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 SQLiteExpress -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress.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-watchos5.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 -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress-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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress.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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress_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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation\ Requirements SQLiteExpress normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SQLiteExpress' from project 'SQLiteExpress')
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 SQLiteExpress -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteExpress.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-watchos5.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 -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteExpress-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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteExpress.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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteExpress_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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteExpress-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/SQLiteExpress.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/armv7k/SQLiteExpress.swiftmodule (in target 'SQLiteExpress' from project 'SQLiteExpress')
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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/armv7k/SQLiteExpress.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLiteExpress.swiftmodule/armv7k-apple-watchos.swiftmodule
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/SQLiteExpress-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteExpress-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/armv7k/SQLiteExpress-Swift.h (in target 'SQLiteExpress' from project 'SQLiteExpress')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteExpress-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/armv7k/SQLiteExpress-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/SQLiteExpress-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLiteExpress.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/armv7k/SQLiteExpress.swiftdoc (in target 'SQLiteExpress' from project 'SQLiteExpress')
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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/armv7k/SQLiteExpress.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLiteExpress.swiftmodule/armv7k-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLiteExpress.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/armv7k/SQLiteExpress.abi.json (in target 'SQLiteExpress' from project 'SQLiteExpress')
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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/armv7k/SQLiteExpress.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLiteExpress.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLiteExpress.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress.swiftmodule (in target 'SQLiteExpress' from project 'SQLiteExpress')
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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLiteExpress.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLiteExpress.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress.swiftdoc (in target 'SQLiteExpress' from project 'SQLiteExpress')
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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLiteExpress.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLiteExpress.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress.abi.json (in target 'SQLiteExpress' from project 'SQLiteExpress')
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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLiteExpress.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLiteExpress.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteExpress.swiftmodule (in target 'SQLiteExpress' from project 'SQLiteExpress')
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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteExpress.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLiteExpress.swiftmodule/arm64-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLiteExpress.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteExpress.swiftdoc (in target 'SQLiteExpress' from project 'SQLiteExpress')
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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteExpress.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLiteExpress.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLiteExpress.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteExpress.abi.json (in target 'SQLiteExpress' from project 'SQLiteExpress')
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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteExpress.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLiteExpress.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLiteExpress.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/armv7k/SQLiteExpress.swiftsourceinfo (in target 'SQLiteExpress' from project 'SQLiteExpress')
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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/armv7k/SQLiteExpress.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLiteExpress.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLiteExpress.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress.swiftsourceinfo (in target 'SQLiteExpress' from project 'SQLiteExpress')
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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLiteExpress.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLiteExpress.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteExpress.swiftsourceinfo (in target 'SQLiteExpress' from project 'SQLiteExpress')
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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteExpress.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLiteExpress.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftCompile normal arm64_32 Compiling\ SQLiteStatement.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteStatement.swift (in target 'SQLiteExpress' from project 'SQLiteExpress')
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/SQLiteExpress/SQLiteDatabase.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteError.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteStatement.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteStatement.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteStatement.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteStatement.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteStatement.dia -target arm64_32-apple-watchos5.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 -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress_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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SQLiteExpress -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteStatement.o -index-unit-output-path /SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteStatement.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/SQLiteExpress/SQLiteStatement.swift (in target 'SQLiteExpress' from project 'SQLiteExpress')
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/SQLiteExpress/SQLiteDatabase.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteError.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteStatement.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteStatement.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteStatement.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteStatement.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteStatement.dia -target arm64_32-apple-watchos5.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 -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress_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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SQLiteExpress -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteStatement.o -index-unit-output-path /SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteStatement.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteStatement.swift:38:22: warning: static property 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var dateFormatter: DateFormatter = {
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteStatement.swift:38:22: note: convert 'dateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
private static var dateFormatter: DateFormatter = {
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteStatement.swift:38:22: note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
private static var dateFormatter: DateFormatter = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteStatement.swift:38:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var dateFormatter: DateFormatter = {
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling SQLiteType.swift (in target 'SQLiteExpress' from project 'SQLiteExpress')
SwiftCompile normal arm64_32 Compiling\ SQLiteDatabase.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift (in target 'SQLiteExpress' from project 'SQLiteExpress')
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/SQLiteExpress/SQLiteDatabase.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteError.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteStatement.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteDatabase.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteDatabase.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteDatabase.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteDatabase.dia -target arm64_32-apple-watchos5.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 -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress_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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SQLiteExpress -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteDatabase.o -index-unit-output-path /SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteDatabase.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/SQLiteExpress/SQLiteDatabase.swift (in target 'SQLiteExpress' from project 'SQLiteExpress')
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/SQLiteExpress/SQLiteDatabase.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteError.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteStatement.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteDatabase.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteDatabase.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteDatabase.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteDatabase.dia -target arm64_32-apple-watchos5.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 -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress_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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SQLiteExpress -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteDatabase.o -index-unit-output-path /SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteDatabase.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:30:23: warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let readOnly = OpenOptions(rawValue: SQLITE_OPEN_READONLY)
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:30:23: note: annotate 'readOnly' with '@MainActor' if property should only be accessed from the main actor
public static let readOnly = OpenOptions(rawValue: SQLITE_OPEN_READONLY)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:30:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let readOnly = OpenOptions(rawValue: SQLITE_OPEN_READONLY)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:31:23: warning: static property 'readWrite' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let readWrite = OpenOptions(rawValue: SQLITE_OPEN_READWRITE)
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:31:23: note: annotate 'readWrite' with '@MainActor' if property should only be accessed from the main actor
public static let readWrite = OpenOptions(rawValue: SQLITE_OPEN_READWRITE)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:31:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let readWrite = OpenOptions(rawValue: SQLITE_OPEN_READWRITE)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:32:23: warning: static property 'create' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let create = OpenOptions(rawValue: SQLITE_OPEN_CREATE)
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:32:23: note: annotate 'create' with '@MainActor' if property should only be accessed from the main actor
public static let create = OpenOptions(rawValue: SQLITE_OPEN_CREATE)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:32:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let create = OpenOptions(rawValue: SQLITE_OPEN_CREATE)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:33:23: warning: static property 'noMutex' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let noMutex = OpenOptions(rawValue: SQLITE_OPEN_NOMUTEX)
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:33:23: note: annotate 'noMutex' with '@MainActor' if property should only be accessed from the main actor
public static let noMutex = OpenOptions(rawValue: SQLITE_OPEN_NOMUTEX)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:33:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let noMutex = OpenOptions(rawValue: SQLITE_OPEN_NOMUTEX)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:34:23: warning: static property 'fullMutex' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let fullMutex = OpenOptions(rawValue: SQLITE_OPEN_FULLMUTEX)
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:34:23: note: annotate 'fullMutex' with '@MainActor' if property should only be accessed from the main actor
public static let fullMutex = OpenOptions(rawValue: SQLITE_OPEN_FULLMUTEX)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let fullMutex = OpenOptions(rawValue: SQLITE_OPEN_FULLMUTEX)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:35:23: warning: static property 'sharedCache' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let sharedCache = OpenOptions(rawValue: SQLITE_OPEN_SHAREDCACHE)
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:35:23: note: annotate 'sharedCache' with '@MainActor' if property should only be accessed from the main actor
public static let sharedCache = OpenOptions(rawValue: SQLITE_OPEN_SHAREDCACHE)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let sharedCache = OpenOptions(rawValue: SQLITE_OPEN_SHAREDCACHE)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:36:23: warning: static property 'privateCache' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let privateCache = OpenOptions(rawValue: SQLITE_OPEN_PRIVATECACHE)
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:36:23: note: annotate 'privateCache' with '@MainActor' if property should only be accessed from the main actor
public static let privateCache = OpenOptions(rawValue: SQLITE_OPEN_PRIVATECACHE)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:36:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let privateCache = OpenOptions(rawValue: SQLITE_OPEN_PRIVATECACHE)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:37:23: warning: static property 'protectionComplete' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let protectionComplete = OpenOptions(rawValue:
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:37:23: note: annotate 'protectionComplete' with '@MainActor' if property should only be accessed from the main actor
public static let protectionComplete = OpenOptions(rawValue:
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:37:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let protectionComplete = OpenOptions(rawValue:
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:39:23: warning: static property 'protectionCompleteUnlessOpen' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let protectionCompleteUnlessOpen = OpenOptions(rawValue:
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:39:23: note: annotate 'protectionCompleteUnlessOpen' with '@MainActor' if property should only be accessed from the main actor
public static let protectionCompleteUnlessOpen = OpenOptions(rawValue:
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:39:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let protectionCompleteUnlessOpen = OpenOptions(rawValue:
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:41:23: warning: static property 'protectionCompleteUntilFirstUserAuth' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let protectionCompleteUntilFirstUserAuth = OpenOptions(rawValue:
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:41:23: note: annotate 'protectionCompleteUntilFirstUserAuth' with '@MainActor' if property should only be accessed from the main actor
public static let protectionCompleteUntilFirstUserAuth = OpenOptions(rawValue:
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:41:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let protectionCompleteUntilFirstUserAuth = OpenOptions(rawValue:
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:43:23: warning: static property 'protectionNone' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let protectionNone = OpenOptions(rawValue: SQLITE_OPEN_FILEPROTECTION_NONE)
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:43:23: note: annotate 'protectionNone' with '@MainActor' if property should only be accessed from the main actor
public static let protectionNone = OpenOptions(rawValue: SQLITE_OPEN_FILEPROTECTION_NONE)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:43:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let protectionNone = OpenOptions(rawValue: SQLITE_OPEN_FILEPROTECTION_NONE)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:44:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let `default`: OpenOptions = [.readWrite, .create]
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:44:23: note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
public static let `default`: OpenOptions = [.readWrite, .create]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:44:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let `default`: OpenOptions = [.readWrite, .create]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:45:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'SQLiteDatabase.OpenOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let all: OpenOptions = [.readOnly, .readWrite, .create, .noMutex, .fullMutex,
^
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:29:17: note: consider making struct 'OpenOptions' conform to the 'Sendable' protocol
public struct OpenOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:45:23: note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
public static let all: OpenOptions = [.readOnly, .readWrite, .create, .noMutex, .fullMutex,
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteDatabase.swift:45:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let all: OpenOptions = [.readOnly, .readWrite, .create, .noMutex, .fullMutex,
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling SQLiteStatement.swift (in target 'SQLiteExpress' from project 'SQLiteExpress')
SwiftCompile normal arm64_32 Compiling\ SQLiteType.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteType.swift (in target 'SQLiteExpress' from project 'SQLiteExpress')
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/SQLiteExpress/SQLiteDatabase.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteError.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteStatement.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteType.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteType.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteType.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteType.dia -target arm64_32-apple-watchos5.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 -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress_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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SQLiteExpress -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteType.o -index-unit-output-path /SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteType.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/SQLiteExpress/SQLiteType.swift (in target 'SQLiteExpress' from project 'SQLiteExpress')
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/SQLiteExpress/SQLiteDatabase.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteError.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteStatement.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SQLiteExpress/SQLiteType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteType.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteType.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteType.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteType.dia -target arm64_32-apple-watchos5.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 -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress_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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SQLiteExpress -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteType.o -index-unit-output-path /SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteType.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling SQLiteDatabase.swift (in target 'SQLiteExpress' from project 'SQLiteExpress')
SwiftDriverJobDiscovery normal armv7k Compiling SQLiteType.swift (in target 'SQLiteExpress' from project 'SQLiteExpress')
SwiftDriverJobDiscovery normal arm64 Compiling SQLiteError.swift (in target 'SQLiteExpress' from project 'SQLiteExpress')
SwiftDriver\ Compilation SQLiteExpress normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SQLiteExpress' from project 'SQLiteExpress')
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 SQLiteExpress -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteExpress.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-watchos5.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 -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteExpress-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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteExpress.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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteExpress_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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteExpress-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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/Binary/SQLiteExpress.o normal arm64 (in target 'SQLiteExpress' from project 'SQLiteExpress')
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-watchos5.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 -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteExpress.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteExpress_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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteExpress.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/SQLiteExpress_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/Binary/SQLiteExpress.o
SwiftDriverJobDiscovery normal armv7k Compiling SQLiteStatement.swift (in target 'SQLiteExpress' from project 'SQLiteExpress')
SwiftDriverJobDiscovery normal armv7k Compiling SQLiteError.swift (in target 'SQLiteExpress' from project 'SQLiteExpress')
SwiftDriverJobDiscovery normal armv7k Compiling SQLiteDatabase.swift (in target 'SQLiteExpress' from project 'SQLiteExpress')
SwiftDriver\ Compilation SQLiteExpress normal armv7k com.apple.xcode.tools.swift.compiler (in target 'SQLiteExpress' from project 'SQLiteExpress')
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 SQLiteExpress -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/armv7k/SQLiteExpress.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-watchos5.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 -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/armv7k/SQLiteExpress-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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/armv7k/SQLiteExpress.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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/armv7k/SQLiteExpress_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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/armv7k/SQLiteExpress-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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/armv7k/Binary/SQLiteExpress.o normal armv7k (in target 'SQLiteExpress' from project 'SQLiteExpress')
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-watchos5.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 -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/armv7k/SQLiteExpress.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/armv7k/SQLiteExpress_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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/armv7k/SQLiteExpress.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/armv7k/SQLiteExpress_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/armv7k/Binary/SQLiteExpress.o
SwiftDriverJobDiscovery normal arm64_32 Compiling SQLiteStatement.swift (in target 'SQLiteExpress' from project 'SQLiteExpress')
SwiftDriverJobDiscovery normal arm64_32 Compiling SQLiteError.swift (in target 'SQLiteExpress' from project 'SQLiteExpress')
SwiftDriverJobDiscovery normal arm64_32 Compiling SQLiteType.swift (in target 'SQLiteExpress' from project 'SQLiteExpress')
SwiftDriverJobDiscovery normal arm64_32 Compiling SQLiteDatabase.swift (in target 'SQLiteExpress' from project 'SQLiteExpress')
SwiftDriver\ Compilation SQLiteExpress normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'SQLiteExpress' from project 'SQLiteExpress')
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 SQLiteExpress -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress.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-watchos5.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 -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress-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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress.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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress_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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress-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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/Binary/SQLiteExpress.o normal arm64_32 (in target 'SQLiteExpress' from project 'SQLiteExpress')
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-watchos5.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 -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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress_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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/SQLiteExpress_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/Binary/SQLiteExpress.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLiteExpress.o normal arm64\ armv7k\ arm64_32 (in target 'SQLiteExpress' from project 'SQLiteExpress')
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/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64/Binary/SQLiteExpress.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/armv7k/Binary/SQLiteExpress.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteExpress.build/Debug-watchos/SQLiteExpress.build/Objects-normal/arm64_32/Binary/SQLiteExpress.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLiteExpress.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLiteExpress.o (in target 'SQLiteExpress' from project 'SQLiteExpress')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLiteExpress.o
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "SQLiteExpress",
"name" : "SQLiteExpress",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.13"
},
{
"name" : "ios",
"version" : "12.0"
}
],
"products" : [
{
"name" : "SQLiteExpress",
"targets" : [
"SQLiteExpress"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "SQLiteExpressTests",
"module_type" : "SwiftTarget",
"name" : "SQLiteExpressTests",
"path" : "Tests/SQLiteExpressTests",
"sources" : [
"SQLiteExpressTests.swift"
],
"target_dependencies" : [
"SQLiteExpress"
],
"type" : "test"
},
{
"c99name" : "SQLiteExpress",
"module_type" : "SwiftTarget",
"name" : "SQLiteExpress",
"path" : "Sources/SQLiteExpress",
"product_memberships" : [
"SQLiteExpress"
],
"sources" : [
"SQLiteDatabase.swift",
"SQLiteError.swift",
"SQLiteStatement.swift",
"SQLiteType.swift"
],
"type" : "library"
}
],
"tools_version" : "5.1"
}
Done.