The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of SQLite.swift, reference master (392dd6), with Swift 6.1 for watchOS using Xcode 16.3 on 13 Jun 2025 22:10:35 UTC.

Swift 6 data race errors: 123

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme SQLite.swift -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/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:193:16: note: add '@MainActor' to make static property 'nameColumn' part of global actor 'MainActor'
    static let nameColumn = Expression<String?>("name")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:193:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let nameColumn = Expression<String?>("name")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:198:16: warning: static property 'seqColumn' is not concurrency-safe because non-'Sendable' type 'Expression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let seqColumn = Expression<Int64>("seq")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:198:16: note: add '@MainActor' to make static property 'seqColumn' part of global actor 'MainActor'
    static let seqColumn = Expression<Int64>("seq")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:198:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let seqColumn = Expression<Int64>("seq")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:200:16: warning: static property 'nameColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let nameColumn = Expression<String>("name")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:200:16: note: add '@MainActor' to make static property 'nameColumn' part of global actor 'MainActor'
    static let nameColumn = Expression<String>("name")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:200:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let nameColumn = Expression<String>("name")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:202:16: warning: static property 'uniqueColumn' is not concurrency-safe because non-'Sendable' type 'Expression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let uniqueColumn = Expression<Int64>("unique")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:202:16: note: add '@MainActor' to make static property 'uniqueColumn' part of global actor 'MainActor'
    static let uniqueColumn = Expression<Int64>("unique")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:202:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let uniqueColumn = Expression<Int64>("unique")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:206:16: warning: static property 'originColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let originColumn = Expression<String>("origin")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:206:16: note: add '@MainActor' to make static property 'originColumn' part of global actor 'MainActor'
    static let originColumn = Expression<String>("origin")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:206:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let originColumn = Expression<String>("origin")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:208:16: warning: static property 'partialColumn' is not concurrency-safe because non-'Sendable' type 'Expression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let partialColumn = Expression<Int64>("partial")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:208:16: note: add '@MainActor' to make static property 'partialColumn' part of global actor 'MainActor'
    static let partialColumn = Expression<Int64>("partial")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:208:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let partialColumn = Expression<Int64>("partial")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:212:16: warning: static property 'idColumn' is not concurrency-safe because non-'Sendable' type 'Expression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let idColumn = Expression<Int64>("id")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:212:16: note: add '@MainActor' to make static property 'idColumn' part of global actor 'MainActor'
    static let idColumn = Expression<Int64>("id")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:212:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let idColumn = Expression<Int64>("id")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:213:16: warning: static property 'seqColumn' is not concurrency-safe because non-'Sendable' type 'Expression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let seqColumn = Expression<Int64>("seq")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:213:16: note: add '@MainActor' to make static property 'seqColumn' part of global actor 'MainActor'
    static let seqColumn = Expression<Int64>("seq")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:213:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let seqColumn = Expression<Int64>("seq")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:214:16: warning: static property 'tableColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let tableColumn = Expression<String>("table")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:214:16: note: add '@MainActor' to make static property 'tableColumn' part of global actor 'MainActor'
    static let tableColumn = Expression<String>("table")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:214:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let tableColumn = Expression<String>("table")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:215:16: warning: static property 'fromColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let fromColumn = Expression<String>("from")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:215:16: note: add '@MainActor' to make static property 'fromColumn' part of global actor 'MainActor'
    static let fromColumn = Expression<String>("from")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:215:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let fromColumn = Expression<String>("from")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:216:16: warning: static property 'toColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String?>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let toColumn = Expression<String?>("to") // when null, use primary key
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:216:16: note: add '@MainActor' to make static property 'toColumn' part of global actor 'MainActor'
    static let toColumn = Expression<String?>("to") // when null, use primary key
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:216:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let toColumn = Expression<String?>("to") // when null, use primary key
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:217:16: warning: static property 'onUpdateColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let onUpdateColumn = Expression<String>("on_update")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:217:16: note: add '@MainActor' to make static property 'onUpdateColumn' part of global actor 'MainActor'
    static let onUpdateColumn = Expression<String>("on_update")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:217:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let onUpdateColumn = Expression<String>("on_update")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:218:16: warning: static property 'onDeleteColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let onDeleteColumn = Expression<String>("on_delete")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:218:16: note: add '@MainActor' to make static property 'onDeleteColumn' part of global actor 'MainActor'
    static let onDeleteColumn = Expression<String>("on_delete")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:218:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let onDeleteColumn = Expression<String>("on_delete")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:219:16: warning: static property 'matchColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let matchColumn = Expression<String>("match")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:219:16: note: add '@MainActor' to make static property 'matchColumn' part of global actor 'MainActor'
    static let matchColumn = Expression<String>("match")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:219:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let matchColumn = Expression<String>("match")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:138:12: warning: let 'rowid' is not concurrency-safe because non-'Sendable' type 'Expression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
public let rowid = Expression<Int64>("ROWID")
           ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:138:12: note: add '@MainActor' to make let 'rowid' part of global actor 'MainActor'
public let rowid = Expression<Int64>("ROWID")
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:138:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let rowid = Expression<Int64>("ROWID")
           ^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Emitting module for SQLite (in target 'SQLite' from project 'SQLite.swift')
SwiftDriver\ Compilation\ Requirements SQLite normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SQLite -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64_32/SQLite.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.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.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.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64_32/SQLite-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/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64_32/SQLite.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64_32/SQLite_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/SQLite.swift.build/Debug-watchos/SQLite.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.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/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64_32/SQLite-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64_32 Compiling CustomFunctions.swift, DateAndTimeFunctions.swift, Expression.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftCompile normal arm64 Compiling\ Schema.swift,\ Setter.swift,\ WindowFunctions.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Schema.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Setter.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/WindowFunctions.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Schema.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Setter.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/WindowFunctions.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling SchemaChanger.swift, SchemaDefinitions.swift, SchemaReader.swift, AggregateFunctions.swift (in target 'SQLite' from project 'SQLite.swift')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLite.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64_32/SQLite.swiftmodule (in target 'SQLite' from project 'SQLite.swift')
    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/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64_32/SQLite.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLite.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLite.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64_32/SQLite.swiftdoc (in target 'SQLite' from project 'SQLite.swift')
    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/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64_32/SQLite.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLite.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLite.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64_32/SQLite.abi.json (in target 'SQLite' from project 'SQLite.swift')
    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/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64_32/SQLite.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLite.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLite.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64_32/SQLite.swiftsourceinfo (in target 'SQLite' from project 'SQLite.swift')
    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/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64_32/SQLite.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLite.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
SwiftCompile normal armv7k Compiling\ CustomFunctions.swift,\ DateAndTimeFunctions.swift,\ Expression.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/CustomFunctions.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/DateAndTimeFunctions.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/CustomFunctions.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/DateAndTimeFunctions.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:138:12: warning: let 'rowid' is not concurrency-safe because non-'Sendable' type 'Expression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
public let rowid = Expression<Int64>("ROWID")
           ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:138:12: note: add '@MainActor' to make let 'rowid' part of global actor 'MainActor'
public let rowid = Expression<Int64>("ROWID")
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:138:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let rowid = Expression<Int64>("ROWID")
           ^
nonisolated(unsafe)
SwiftCompile normal armv7k Compiling\ SQLiteFeature.swift,\ SQLiteVersion.swift,\ Statement.swift,\ URIQueryParameter.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/SQLiteFeature.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/SQLiteVersion.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Statement.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/URIQueryParameter.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/SQLiteFeature.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/SQLiteVersion.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/SQLiteVersion.swift:20:16: warning: static property 'zero' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var zero: SQLiteVersion = .init(major: 0, minor: 0)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/SQLiteVersion.swift:20:16: note: convert 'zero' to a 'let' constant to make 'Sendable' shared state immutable
    static var zero: SQLiteVersion = .init(major: 0, minor: 0)
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/SQLiteVersion.swift:20:16: note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
    static var zero: SQLiteVersion = .init(major: 0, minor: 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/SQLiteVersion.swift:20:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var zero: SQLiteVersion = .init(major: 0, minor: 0)
               ^
    nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Statement.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/URIQueryParameter.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling Backup.swift, Blob.swift, Connection+Aggregation.swift, Connection+Attach.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftCompile normal armv7k Compiling\ Backup.swift,\ Blob.swift,\ Connection+Aggregation.swift,\ Connection+Attach.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Backup.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Blob.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Connection+Aggregation.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Connection+Attach.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Backup.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Blob.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Connection+Aggregation.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Connection+Attach.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ Connection+Pragmas.swift,\ Connection.swift,\ Errors.swift,\ Result.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Connection+Pragmas.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Connection.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Result.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Connection+Pragmas.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Connection.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Errors.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Result.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Result.swift:22:10: warning: associated value 'error(message:code:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
    case error(message: String, code: Int32, statement: Statement?)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Statement.swift:36:20: note: class 'Statement' does not conform to the 'Sendable' protocol
public final class Statement {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Result.swift:31:10: warning: associated value 'extendedError(message:extendedCode:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
    case extendedError(message: String, extendedCode: Int32, statement: Statement?)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Statement.swift:36:20: note: class 'Statement' does not conform to the 'Sendable' protocol
public final class Statement {
                   ^
SwiftCompile normal armv7k Compiling\ SchemaChanger.swift,\ SchemaDefinitions.swift,\ SchemaReader.swift,\ AggregateFunctions.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaChanger.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaDefinitions.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/AggregateFunctions.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaChanger.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaChanger.swift:32:14: warning: associated value 'foreignKeyError' of 'Sendable'-conforming enum 'Error' has non-sendable type 'ForeignKeyError'; this is an error in the Swift 6 language mode
        case foreignKeyError([ForeignKeyError])
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaDefinitions.swift:343:15: note: consider making struct 'ForeignKeyError' conform to the 'Sendable' protocol
public struct ForeignKeyError: CustomStringConvertible {
              ^
                                                      , Sendable
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaDefinitions.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:154:24: warning: static property 'name' is not concurrency-safe because non-'Sendable' type 'Table' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let name = Table("sqlite_schema", database: "main")
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Query.swift:880:15: note: consider making struct 'Table' conform to the 'Sendable' protocol
public struct Table: SchemaType {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:154:24: note: add '@MainActor' to make static property 'name' part of global actor 'MainActor'
    private static let name = Table("sqlite_schema", database: "main")
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:154:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let name = Table("sqlite_schema", database: "main")
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:155:24: warning: static property 'tempName' is not concurrency-safe because non-'Sendable' type 'Table' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let tempName = Table("sqlite_schema", database: "temp")
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Query.swift:880:15: note: consider making struct 'Table' conform to the 'Sendable' protocol
public struct Table: SchemaType {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:155:24: note: add '@MainActor' to make static property 'tempName' part of global actor 'MainActor'
    private static let tempName = Table("sqlite_schema", database: "temp")
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:155:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let tempName = Table("sqlite_schema", database: "temp")
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:157:24: warning: static property 'masterName' is not concurrency-safe because non-'Sendable' type 'Table' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let masterName = Table("sqlite_master")
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Query.swift:880:15: note: consider making struct 'Table' conform to the 'Sendable' protocol
public struct Table: SchemaType {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:157:24: note: add '@MainActor' to make static property 'masterName' part of global actor 'MainActor'
    private static let masterName = Table("sqlite_master")
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:157:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let masterName = Table("sqlite_master")
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:158:24: warning: static property 'tempMasterName' is not concurrency-safe because non-'Sendable' type 'Table' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let tempMasterName = Table("sqlite_temp_master")
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Query.swift:880:15: note: consider making struct 'Table' conform to the 'Sendable' protocol
public struct Table: SchemaType {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:158:24: note: add '@MainActor' to make static property 'tempMasterName' part of global actor 'MainActor'
    private static let tempMasterName = Table("sqlite_temp_master")
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:158:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let tempMasterName = Table("sqlite_temp_master")
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:169:16: warning: static property 'typeColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let typeColumn = Expression<String>("type")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:169:16: note: add '@MainActor' to make static property 'typeColumn' part of global actor 'MainActor'
    static let typeColumn = Expression<String>("type")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:169:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let typeColumn = Expression<String>("type")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:170:16: warning: static property 'nameColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let nameColumn = Expression<String>("name")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:170:16: note: add '@MainActor' to make static property 'nameColumn' part of global actor 'MainActor'
    static let nameColumn = Expression<String>("name")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:170:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let nameColumn = Expression<String>("name")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:171:16: warning: static property 'tableNameColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let tableNameColumn = Expression<String>("tbl_name")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:171:16: note: add '@MainActor' to make static property 'tableNameColumn' part of global actor 'MainActor'
    static let tableNameColumn = Expression<String>("tbl_name")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:171:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let tableNameColumn = Expression<String>("tbl_name")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:172:16: warning: static property 'rootPageColumn' is not concurrency-safe because non-'Sendable' type 'Expression<Int64?>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let rootPageColumn = Expression<Int64?>("rootpage")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:172:16: note: add '@MainActor' to make static property 'rootPageColumn' part of global actor 'MainActor'
    static let rootPageColumn = Expression<Int64?>("rootpage")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:172:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let rootPageColumn = Expression<Int64?>("rootpage")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:173:16: warning: static property 'sqlColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String?>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let sqlColumn = Expression<String?>("sql")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:173:16: note: add '@MainActor' to make static property 'sqlColumn' part of global actor 'MainActor'
    static let sqlColumn = Expression<String?>("sql")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:173:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let sqlColumn = Expression<String?>("sql")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:177:16: warning: static property 'idColumn' is not concurrency-safe because non-'Sendable' type 'Expression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let idColumn = Expression<Int64>("cid")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:177:16: note: add '@MainActor' to make static property 'idColumn' part of global actor 'MainActor'
    static let idColumn = Expression<Int64>("cid")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:177:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let idColumn = Expression<Int64>("cid")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:178:16: warning: static property 'nameColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let nameColumn = Expression<String>("name")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:178:16: note: add '@MainActor' to make static property 'nameColumn' part of global actor 'MainActor'
    static let nameColumn = Expression<String>("name")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:178:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let nameColumn = Expression<String>("name")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:179:16: warning: static property 'typeColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let typeColumn = Expression<String>("type")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:179:16: note: add '@MainActor' to make static property 'typeColumn' part of global actor 'MainActor'
    static let typeColumn = Expression<String>("type")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:179:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let typeColumn = Expression<String>("type")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:180:16: warning: static property 'notNullColumn' is not concurrency-safe because non-'Sendable' type 'Expression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let notNullColumn = Expression<Int64>("notnull")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:180:16: note: add '@MainActor' to make static property 'notNullColumn' part of global actor 'MainActor'
    static let notNullColumn = Expression<Int64>("notnull")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:180:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let notNullColumn = Expression<Int64>("notnull")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:181:16: warning: static property 'defaultValueColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String?>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let defaultValueColumn = Expression<String?>("dflt_value")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:181:16: note: add '@MainActor' to make static property 'defaultValueColumn' part of global actor 'MainActor'
    static let defaultValueColumn = Expression<String?>("dflt_value")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:181:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let defaultValueColumn = Expression<String?>("dflt_value")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:182:16: warning: static property 'primaryKeyColumn' is not concurrency-safe because non-'Sendable' type 'Expression<Int64?>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let primaryKeyColumn = Expression<Int64?>("pk")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:182:16: note: add '@MainActor' to make static property 'primaryKeyColumn' part of global actor 'MainActor'
    static let primaryKeyColumn = Expression<Int64?>("pk")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:182:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let primaryKeyColumn = Expression<Int64?>("pk")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:187:16: warning: static property 'seqnoColumn' is not concurrency-safe because non-'Sendable' type 'Expression<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let seqnoColumn = Expression<Int>("seqno")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:187:16: note: add '@MainActor' to make static property 'seqnoColumn' part of global actor 'MainActor'
    static let seqnoColumn = Expression<Int>("seqno")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:187:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let seqnoColumn = Expression<Int>("seqno")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:190:16: warning: static property 'cidColumn' is not concurrency-safe because non-'Sendable' type 'Expression<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let cidColumn = Expression<Int>("cid")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:190:16: note: add '@MainActor' to make static property 'cidColumn' part of global actor 'MainActor'
    static let cidColumn = Expression<Int>("cid")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:190:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let cidColumn = Expression<Int>("cid")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:193:16: warning: static property 'nameColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String?>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let nameColumn = Expression<String?>("name")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:193:16: note: add '@MainActor' to make static property 'nameColumn' part of global actor 'MainActor'
    static let nameColumn = Expression<String?>("name")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:193:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let nameColumn = Expression<String?>("name")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:198:16: warning: static property 'seqColumn' is not concurrency-safe because non-'Sendable' type 'Expression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let seqColumn = Expression<Int64>("seq")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:198:16: note: add '@MainActor' to make static property 'seqColumn' part of global actor 'MainActor'
    static let seqColumn = Expression<Int64>("seq")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:198:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let seqColumn = Expression<Int64>("seq")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:200:16: warning: static property 'nameColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let nameColumn = Expression<String>("name")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:200:16: note: add '@MainActor' to make static property 'nameColumn' part of global actor 'MainActor'
    static let nameColumn = Expression<String>("name")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:200:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let nameColumn = Expression<String>("name")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:202:16: warning: static property 'uniqueColumn' is not concurrency-safe because non-'Sendable' type 'Expression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let uniqueColumn = Expression<Int64>("unique")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:202:16: note: add '@MainActor' to make static property 'uniqueColumn' part of global actor 'MainActor'
    static let uniqueColumn = Expression<Int64>("unique")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:202:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let uniqueColumn = Expression<Int64>("unique")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:206:16: warning: static property 'originColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let originColumn = Expression<String>("origin")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:206:16: note: add '@MainActor' to make static property 'originColumn' part of global actor 'MainActor'
    static let originColumn = Expression<String>("origin")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:206:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let originColumn = Expression<String>("origin")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:208:16: warning: static property 'partialColumn' is not concurrency-safe because non-'Sendable' type 'Expression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let partialColumn = Expression<Int64>("partial")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:208:16: note: add '@MainActor' to make static property 'partialColumn' part of global actor 'MainActor'
    static let partialColumn = Expression<Int64>("partial")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:208:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let partialColumn = Expression<Int64>("partial")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:212:16: warning: static property 'idColumn' is not concurrency-safe because non-'Sendable' type 'Expression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let idColumn = Expression<Int64>("id")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:212:16: note: add '@MainActor' to make static property 'idColumn' part of global actor 'MainActor'
    static let idColumn = Expression<Int64>("id")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:212:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let idColumn = Expression<Int64>("id")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:213:16: warning: static property 'seqColumn' is not concurrency-safe because non-'Sendable' type 'Expression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let seqColumn = Expression<Int64>("seq")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:213:16: note: add '@MainActor' to make static property 'seqColumn' part of global actor 'MainActor'
    static let seqColumn = Expression<Int64>("seq")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:213:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let seqColumn = Expression<Int64>("seq")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:214:16: warning: static property 'tableColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let tableColumn = Expression<String>("table")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:214:16: note: add '@MainActor' to make static property 'tableColumn' part of global actor 'MainActor'
    static let tableColumn = Expression<String>("table")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:214:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let tableColumn = Expression<String>("table")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:215:16: warning: static property 'fromColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let fromColumn = Expression<String>("from")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:215:16: note: add '@MainActor' to make static property 'fromColumn' part of global actor 'MainActor'
    static let fromColumn = Expression<String>("from")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:215:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let fromColumn = Expression<String>("from")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:216:16: warning: static property 'toColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String?>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let toColumn = Expression<String?>("to") // when null, use primary key
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:216:16: note: add '@MainActor' to make static property 'toColumn' part of global actor 'MainActor'
    static let toColumn = Expression<String?>("to") // when null, use primary key
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:216:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let toColumn = Expression<String?>("to") // when null, use primary key
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:217:16: warning: static property 'onUpdateColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let onUpdateColumn = Expression<String>("on_update")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:217:16: note: add '@MainActor' to make static property 'onUpdateColumn' part of global actor 'MainActor'
    static let onUpdateColumn = Expression<String>("on_update")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:217:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let onUpdateColumn = Expression<String>("on_update")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:218:16: warning: static property 'onDeleteColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let onDeleteColumn = Expression<String>("on_delete")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:218:16: note: add '@MainActor' to make static property 'onDeleteColumn' part of global actor 'MainActor'
    static let onDeleteColumn = Expression<String>("on_delete")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:218:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let onDeleteColumn = Expression<String>("on_delete")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:219:16: warning: static property 'matchColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let matchColumn = Expression<String>("match")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:219:16: note: add '@MainActor' to make static property 'matchColumn' part of global actor 'MainActor'
    static let matchColumn = Expression<String>("match")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:219:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let matchColumn = Expression<String>("match")
               ^
    nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/AggregateFunctions.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ RTree.swift,\ Foundation.swift,\ Helpers.swift,\ Connection+Schema.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/RTree.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Foundation.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Helpers.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/Connection+Schema.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/RTree.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Foundation.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Foundation.swift:64:12: warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public var dateFormatter: DateFormatter = {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Foundation.swift:64:12: note: convert 'dateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
public var dateFormatter: DateFormatter = {
       ~~~ ^
       let
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Foundation.swift:64:12: note: add '@MainActor' to make var 'dateFormatter' part of global actor 'MainActor'
public var dateFormatter: DateFormatter = {
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Foundation.swift:64:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public var dateFormatter: DateFormatter = {
           ^
nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Helpers.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/Connection+Schema.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling RTree.swift, Foundation.swift, Helpers.swift, Connection+Schema.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftDriverJobDiscovery normal arm64_32 Compiling SQLiteFeature.swift, SQLiteVersion.swift, Statement.swift, URIQueryParameter.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftDriverJobDiscovery normal arm64_32 Compiling Coding.swift, Collation.swift, CoreFunctions.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftDriverJobDiscovery normal arm64_32 Compiling Connection+Pragmas.swift, Connection.swift, Errors.swift, Result.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftCompile normal arm64 Compiling\ RTree.swift,\ Foundation.swift,\ Helpers.swift,\ Connection+Schema.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/RTree.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Foundation.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Helpers.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/Connection+Schema.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/RTree.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Foundation.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Foundation.swift:64:12: warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public var dateFormatter: DateFormatter = {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Foundation.swift:64:12: note: convert 'dateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
public var dateFormatter: DateFormatter = {
       ~~~ ^
       let
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Foundation.swift:64:12: note: add '@MainActor' to make var 'dateFormatter' part of global actor 'MainActor'
public var dateFormatter: DateFormatter = {
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Foundation.swift:64:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public var dateFormatter: DateFormatter = {
           ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Helpers.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/Connection+Schema.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling Operators.swift, Query+with.swift, Query.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftCompile normal arm64 Compiling\ Coding.swift,\ Collation.swift,\ CoreFunctions.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Coding.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Collation.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/CoreFunctions.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Coding.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Collation.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/CoreFunctions.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Emitting module for SQLite (in target 'SQLite' from project 'SQLite.swift')
SwiftDriver\ Compilation\ Requirements SQLite normal armv7k com.apple.xcode.tools.swift.compiler (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SQLite -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/armv7k/SQLite.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.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.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.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/armv7k/SQLite-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/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/armv7k/SQLite.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/armv7k/SQLite_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/SQLite.swift.build/Debug-watchos/SQLite.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.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/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/armv7k/SQLite-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Emitting module for SQLite (in target 'SQLite' from project 'SQLite.swift')
SwiftCompile normal arm64 Compiling\ CustomFunctions.swift,\ DateAndTimeFunctions.swift,\ Expression.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/CustomFunctions.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/DateAndTimeFunctions.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/CustomFunctions.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/DateAndTimeFunctions.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:138:12: warning: let 'rowid' is not concurrency-safe because non-'Sendable' type 'Expression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
public let rowid = Expression<Int64>("ROWID")
           ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:138:12: note: add '@MainActor' to make let 'rowid' part of global actor 'MainActor'
public let rowid = Expression<Int64>("ROWID")
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:138:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let rowid = Expression<Int64>("ROWID")
           ^
nonisolated(unsafe)
SwiftDriver\ Compilation\ Requirements SQLite normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SQLite -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64/SQLite.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.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.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.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64/SQLite-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/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64/SQLite.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64/SQLite_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/SQLite.swift.build/Debug-watchos/SQLite.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.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/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64/SQLite-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal armv7k Compiling CustomFunctions.swift, DateAndTimeFunctions.swift, Expression.swift (in target 'SQLite' from project 'SQLite.swift')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLite.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/armv7k/SQLite.swiftmodule (in target 'SQLite' from project 'SQLite.swift')
    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/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/armv7k/SQLite.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLite.swiftmodule/armv7k-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLite.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/armv7k/SQLite.swiftdoc (in target 'SQLite' from project 'SQLite.swift')
    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/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/armv7k/SQLite.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLite.swiftmodule/armv7k-apple-watchos.swiftdoc
SwiftDriverJobDiscovery normal armv7k Compiling Backup.swift, Blob.swift, Connection+Aggregation.swift, Connection+Attach.swift (in target 'SQLite' from project 'SQLite.swift')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLite.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/armv7k/SQLite.abi.json (in target 'SQLite' from project 'SQLite.swift')
    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/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/armv7k/SQLite.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLite.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLite.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/armv7k/SQLite.swiftsourceinfo (in target 'SQLite' from project 'SQLite.swift')
    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/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/armv7k/SQLite.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLite.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
SwiftCompile normal arm64 Compiling\ SQLiteFeature.swift,\ SQLiteVersion.swift,\ Statement.swift,\ URIQueryParameter.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/SQLiteFeature.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/SQLiteVersion.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Statement.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/URIQueryParameter.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/SQLiteFeature.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/SQLiteVersion.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/SQLiteVersion.swift:20:16: warning: static property 'zero' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var zero: SQLiteVersion = .init(major: 0, minor: 0)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/SQLiteVersion.swift:20:16: note: convert 'zero' to a 'let' constant to make 'Sendable' shared state immutable
    static var zero: SQLiteVersion = .init(major: 0, minor: 0)
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/SQLiteVersion.swift:20:16: note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
    static var zero: SQLiteVersion = .init(major: 0, minor: 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/SQLiteVersion.swift:20:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var zero: SQLiteVersion = .init(major: 0, minor: 0)
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Statement.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/URIQueryParameter.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ Schema.swift,\ Setter.swift,\ WindowFunctions.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Schema.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Setter.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/WindowFunctions.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Schema.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Setter.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/WindowFunctions.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ Value.swift,\ Cipher.swift,\ FTS4.swift,\ FTS5.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Value.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/Cipher.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS4.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS5.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Value.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Value.swift:108:23: warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var declaredDatatype = Int64.declaredDatatype
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Value.swift:108:23: note: convert 'declaredDatatype' to a 'let' constant to make 'Sendable' shared state immutable
    public static var declaredDatatype = Int64.declaredDatatype
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Value.swift:108:23: note: add '@MainActor' to make static property 'declaredDatatype' part of global actor 'MainActor'
    public static var declaredDatatype = Int64.declaredDatatype
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Value.swift:108:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var declaredDatatype = Int64.declaredDatatype
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Value.swift:122:23: warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var declaredDatatype = Int64.declaredDatatype
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Value.swift:122:23: note: convert 'declaredDatatype' to a 'let' constant to make 'Sendable' shared state immutable
    public static var declaredDatatype = Int64.declaredDatatype
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Value.swift:122:23: note: add '@MainActor' to make static property 'declaredDatatype' part of global actor 'MainActor'
    public static var declaredDatatype = Int64.declaredDatatype
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Value.swift:122:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var declaredDatatype = Int64.declaredDatatype
                      ^
    nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/Cipher.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS4.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS4.swift:93:23: warning: static property 'Simple' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Simple = Tokenizer("simple")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS4.swift:91:15: note: consider making struct 'Tokenizer' conform to the 'Sendable' protocol
public struct Tokenizer {
              ^
                        : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS4.swift:93:23: note: add '@MainActor' to make static property 'Simple' part of global actor 'MainActor'
    public static let Simple = Tokenizer("simple")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS4.swift:93:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Simple = Tokenizer("simple")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS4.swift:94:23: warning: static property 'Porter' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Porter = Tokenizer("porter")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS4.swift:91:15: note: consider making struct 'Tokenizer' conform to the 'Sendable' protocol
public struct Tokenizer {
              ^
                        : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS4.swift:94:23: note: add '@MainActor' to make static property 'Porter' part of global actor 'MainActor'
    public static let Porter = Tokenizer("porter")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS4.swift:94:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Porter = Tokenizer("porter")
                      ^
    nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS5.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling SQLiteFeature.swift, SQLiteVersion.swift, Statement.swift, URIQueryParameter.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftCompile normal arm64 Compiling\ Operators.swift,\ Query+with.swift,\ Query.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Query+with.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Query.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Operators.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Query+with.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Query.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ Operators.swift,\ Query+with.swift,\ Query.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Query+with.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Query.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Operators.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Query+with.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Query.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling RTree.swift, Foundation.swift, Helpers.swift, Connection+Schema.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftDriverJobDiscovery normal armv7k Compiling Connection+Pragmas.swift, Connection.swift, Errors.swift, Result.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/SQLite-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64/SQLite-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64_32/SQLite-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/armv7k/SQLite-Swift.h (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64/SQLite-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64_32/SQLite-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/armv7k/SQLite-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/SQLite-Swift.h
SwiftDriverJobDiscovery normal armv7k Compiling SchemaChanger.swift, SchemaDefinitions.swift, SchemaReader.swift, AggregateFunctions.swift (in target 'SQLite' from project 'SQLite.swift')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLite.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64/SQLite.swiftmodule (in target 'SQLite' from project 'SQLite.swift')
    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/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64/SQLite.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLite.swiftmodule/arm64-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLite.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64/SQLite.swiftdoc (in target 'SQLite' from project 'SQLite.swift')
    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/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64/SQLite.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLite.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLite.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64/SQLite.abi.json (in target 'SQLite' from project 'SQLite.swift')
    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/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64/SQLite.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLite.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLite.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64/SQLite.swiftsourceinfo (in target 'SQLite' from project 'SQLite.swift')
    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/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64/SQLite.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLite.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftCompile normal arm64 Compiling\ Connection+Pragmas.swift,\ Connection.swift,\ Errors.swift,\ Result.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Connection+Pragmas.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Connection.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Result.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Connection+Pragmas.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Connection.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Errors.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Result.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Result.swift:22:10: warning: associated value 'error(message:code:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
    case error(message: String, code: Int32, statement: Statement?)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Statement.swift:36:20: note: class 'Statement' does not conform to the 'Sendable' protocol
public final class Statement {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Result.swift:31:10: warning: associated value 'extendedError(message:extendedCode:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
    case extendedError(message: String, extendedCode: Int32, statement: Statement?)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Statement.swift:36:20: note: class 'Statement' does not conform to the 'Sendable' protocol
public final class Statement {
                   ^
SwiftCompile normal armv7k Compiling\ Coding.swift,\ Collation.swift,\ CoreFunctions.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Coding.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Collation.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/CoreFunctions.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Coding.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Collation.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/CoreFunctions.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Schema.swift, Setter.swift, WindowFunctions.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftCompile normal arm64 Compiling\ Backup.swift,\ Blob.swift,\ Connection+Aggregation.swift,\ Connection+Attach.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Backup.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Blob.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Connection+Aggregation.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Connection+Attach.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Backup.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Blob.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Connection+Aggregation.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Connection+Attach.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling CustomFunctions.swift, DateAndTimeFunctions.swift, Expression.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftCompile normal arm64 Compiling\ Value.swift,\ Cipher.swift,\ FTS4.swift,\ FTS5.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Value.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/Cipher.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS4.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS5.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Value.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Value.swift:108:23: warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var declaredDatatype = Int64.declaredDatatype
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Value.swift:108:23: note: convert 'declaredDatatype' to a 'let' constant to make 'Sendable' shared state immutable
    public static var declaredDatatype = Int64.declaredDatatype
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Value.swift:108:23: note: add '@MainActor' to make static property 'declaredDatatype' part of global actor 'MainActor'
    public static var declaredDatatype = Int64.declaredDatatype
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Value.swift:108:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var declaredDatatype = Int64.declaredDatatype
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Value.swift:122:23: warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var declaredDatatype = Int64.declaredDatatype
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Value.swift:122:23: note: convert 'declaredDatatype' to a 'let' constant to make 'Sendable' shared state immutable
    public static var declaredDatatype = Int64.declaredDatatype
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Value.swift:122:23: note: add '@MainActor' to make static property 'declaredDatatype' part of global actor 'MainActor'
    public static var declaredDatatype = Int64.declaredDatatype
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Value.swift:122:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var declaredDatatype = Int64.declaredDatatype
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/Cipher.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS4.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS4.swift:93:23: warning: static property 'Simple' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Simple = Tokenizer("simple")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS4.swift:91:15: note: consider making struct 'Tokenizer' conform to the 'Sendable' protocol
public struct Tokenizer {
              ^
                        : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS4.swift:93:23: note: add '@MainActor' to make static property 'Simple' part of global actor 'MainActor'
    public static let Simple = Tokenizer("simple")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS4.swift:93:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Simple = Tokenizer("simple")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS4.swift:94:23: warning: static property 'Porter' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Porter = Tokenizer("porter")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS4.swift:91:15: note: consider making struct 'Tokenizer' conform to the 'Sendable' protocol
public struct Tokenizer {
              ^
                        : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS4.swift:94:23: note: add '@MainActor' to make static property 'Porter' part of global actor 'MainActor'
    public static let Porter = Tokenizer("porter")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS4.swift:94:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Porter = Tokenizer("porter")
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS5.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Coding.swift, Collation.swift, CoreFunctions.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftCompile normal arm64 Compiling\ SchemaChanger.swift,\ SchemaDefinitions.swift,\ SchemaReader.swift,\ AggregateFunctions.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaChanger.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaDefinitions.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/AggregateFunctions.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaChanger.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaChanger.swift:32:14: warning: associated value 'foreignKeyError' of 'Sendable'-conforming enum 'Error' has non-sendable type 'ForeignKeyError'; this is an error in the Swift 6 language mode
        case foreignKeyError([ForeignKeyError])
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaDefinitions.swift:343:15: note: consider making struct 'ForeignKeyError' conform to the 'Sendable' protocol
public struct ForeignKeyError: CustomStringConvertible {
              ^
                                                      , Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaDefinitions.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:154:24: warning: static property 'name' is not concurrency-safe because non-'Sendable' type 'Table' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let name = Table("sqlite_schema", database: "main")
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Query.swift:880:15: note: consider making struct 'Table' conform to the 'Sendable' protocol
public struct Table: SchemaType {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:154:24: note: add '@MainActor' to make static property 'name' part of global actor 'MainActor'
    private static let name = Table("sqlite_schema", database: "main")
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:154:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let name = Table("sqlite_schema", database: "main")
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:155:24: warning: static property 'tempName' is not concurrency-safe because non-'Sendable' type 'Table' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let tempName = Table("sqlite_schema", database: "temp")
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Query.swift:880:15: note: consider making struct 'Table' conform to the 'Sendable' protocol
public struct Table: SchemaType {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:155:24: note: add '@MainActor' to make static property 'tempName' part of global actor 'MainActor'
    private static let tempName = Table("sqlite_schema", database: "temp")
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:155:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let tempName = Table("sqlite_schema", database: "temp")
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:157:24: warning: static property 'masterName' is not concurrency-safe because non-'Sendable' type 'Table' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let masterName = Table("sqlite_master")
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Query.swift:880:15: note: consider making struct 'Table' conform to the 'Sendable' protocol
public struct Table: SchemaType {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:157:24: note: add '@MainActor' to make static property 'masterName' part of global actor 'MainActor'
    private static let masterName = Table("sqlite_master")
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:157:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let masterName = Table("sqlite_master")
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:158:24: warning: static property 'tempMasterName' is not concurrency-safe because non-'Sendable' type 'Table' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let tempMasterName = Table("sqlite_temp_master")
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Query.swift:880:15: note: consider making struct 'Table' conform to the 'Sendable' protocol
public struct Table: SchemaType {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:158:24: note: add '@MainActor' to make static property 'tempMasterName' part of global actor 'MainActor'
    private static let tempMasterName = Table("sqlite_temp_master")
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:158:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let tempMasterName = Table("sqlite_temp_master")
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:169:16: warning: static property 'typeColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let typeColumn = Expression<String>("type")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:169:16: note: add '@MainActor' to make static property 'typeColumn' part of global actor 'MainActor'
    static let typeColumn = Expression<String>("type")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:169:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let typeColumn = Expression<String>("type")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:170:16: warning: static property 'nameColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let nameColumn = Expression<String>("name")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:170:16: note: add '@MainActor' to make static property 'nameColumn' part of global actor 'MainActor'
    static let nameColumn = Expression<String>("name")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:170:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let nameColumn = Expression<String>("name")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:171:16: warning: static property 'tableNameColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let tableNameColumn = Expression<String>("tbl_name")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:171:16: note: add '@MainActor' to make static property 'tableNameColumn' part of global actor 'MainActor'
    static let tableNameColumn = Expression<String>("tbl_name")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:171:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let tableNameColumn = Expression<String>("tbl_name")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:172:16: warning: static property 'rootPageColumn' is not concurrency-safe because non-'Sendable' type 'Expression<Int64?>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let rootPageColumn = Expression<Int64?>("rootpage")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:172:16: note: add '@MainActor' to make static property 'rootPageColumn' part of global actor 'MainActor'
    static let rootPageColumn = Expression<Int64?>("rootpage")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:172:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let rootPageColumn = Expression<Int64?>("rootpage")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:173:16: warning: static property 'sqlColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String?>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let sqlColumn = Expression<String?>("sql")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:173:16: note: add '@MainActor' to make static property 'sqlColumn' part of global actor 'MainActor'
    static let sqlColumn = Expression<String?>("sql")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:173:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let sqlColumn = Expression<String?>("sql")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:177:16: warning: static property 'idColumn' is not concurrency-safe because non-'Sendable' type 'Expression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let idColumn = Expression<Int64>("cid")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:177:16: note: add '@MainActor' to make static property 'idColumn' part of global actor 'MainActor'
    static let idColumn = Expression<Int64>("cid")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:177:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let idColumn = Expression<Int64>("cid")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:178:16: warning: static property 'nameColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let nameColumn = Expression<String>("name")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:178:16: note: add '@MainActor' to make static property 'nameColumn' part of global actor 'MainActor'
    static let nameColumn = Expression<String>("name")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:178:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let nameColumn = Expression<String>("name")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:179:16: warning: static property 'typeColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let typeColumn = Expression<String>("type")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:179:16: note: add '@MainActor' to make static property 'typeColumn' part of global actor 'MainActor'
    static let typeColumn = Expression<String>("type")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:179:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let typeColumn = Expression<String>("type")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:180:16: warning: static property 'notNullColumn' is not concurrency-safe because non-'Sendable' type 'Expression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let notNullColumn = Expression<Int64>("notnull")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:180:16: note: add '@MainActor' to make static property 'notNullColumn' part of global actor 'MainActor'
    static let notNullColumn = Expression<Int64>("notnull")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:180:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let notNullColumn = Expression<Int64>("notnull")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:181:16: warning: static property 'defaultValueColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String?>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let defaultValueColumn = Expression<String?>("dflt_value")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:181:16: note: add '@MainActor' to make static property 'defaultValueColumn' part of global actor 'MainActor'
    static let defaultValueColumn = Expression<String?>("dflt_value")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:181:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let defaultValueColumn = Expression<String?>("dflt_value")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:182:16: warning: static property 'primaryKeyColumn' is not concurrency-safe because non-'Sendable' type 'Expression<Int64?>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let primaryKeyColumn = Expression<Int64?>("pk")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:182:16: note: add '@MainActor' to make static property 'primaryKeyColumn' part of global actor 'MainActor'
    static let primaryKeyColumn = Expression<Int64?>("pk")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:182:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let primaryKeyColumn = Expression<Int64?>("pk")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:187:16: warning: static property 'seqnoColumn' is not concurrency-safe because non-'Sendable' type 'Expression<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let seqnoColumn = Expression<Int>("seqno")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:187:16: note: add '@MainActor' to make static property 'seqnoColumn' part of global actor 'MainActor'
    static let seqnoColumn = Expression<Int>("seqno")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:187:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let seqnoColumn = Expression<Int>("seqno")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:190:16: warning: static property 'cidColumn' is not concurrency-safe because non-'Sendable' type 'Expression<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let cidColumn = Expression<Int>("cid")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:190:16: note: add '@MainActor' to make static property 'cidColumn' part of global actor 'MainActor'
    static let cidColumn = Expression<Int>("cid")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:190:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let cidColumn = Expression<Int>("cid")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:193:16: warning: static property 'nameColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String?>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let nameColumn = Expression<String?>("name")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:193:16: note: add '@MainActor' to make static property 'nameColumn' part of global actor 'MainActor'
    static let nameColumn = Expression<String?>("name")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:193:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let nameColumn = Expression<String?>("name")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:198:16: warning: static property 'seqColumn' is not concurrency-safe because non-'Sendable' type 'Expression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let seqColumn = Expression<Int64>("seq")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:198:16: note: add '@MainActor' to make static property 'seqColumn' part of global actor 'MainActor'
    static let seqColumn = Expression<Int64>("seq")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:198:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let seqColumn = Expression<Int64>("seq")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:200:16: warning: static property 'nameColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let nameColumn = Expression<String>("name")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:200:16: note: add '@MainActor' to make static property 'nameColumn' part of global actor 'MainActor'
    static let nameColumn = Expression<String>("name")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:200:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let nameColumn = Expression<String>("name")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:202:16: warning: static property 'uniqueColumn' is not concurrency-safe because non-'Sendable' type 'Expression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let uniqueColumn = Expression<Int64>("unique")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:202:16: note: add '@MainActor' to make static property 'uniqueColumn' part of global actor 'MainActor'
    static let uniqueColumn = Expression<Int64>("unique")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:202:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let uniqueColumn = Expression<Int64>("unique")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:206:16: warning: static property 'originColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let originColumn = Expression<String>("origin")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:206:16: note: add '@MainActor' to make static property 'originColumn' part of global actor 'MainActor'
    static let originColumn = Expression<String>("origin")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:206:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let originColumn = Expression<String>("origin")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:208:16: warning: static property 'partialColumn' is not concurrency-safe because non-'Sendable' type 'Expression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let partialColumn = Expression<Int64>("partial")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:208:16: note: add '@MainActor' to make static property 'partialColumn' part of global actor 'MainActor'
    static let partialColumn = Expression<Int64>("partial")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:208:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let partialColumn = Expression<Int64>("partial")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:212:16: warning: static property 'idColumn' is not concurrency-safe because non-'Sendable' type 'Expression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let idColumn = Expression<Int64>("id")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:212:16: note: add '@MainActor' to make static property 'idColumn' part of global actor 'MainActor'
    static let idColumn = Expression<Int64>("id")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:212:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let idColumn = Expression<Int64>("id")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:213:16: warning: static property 'seqColumn' is not concurrency-safe because non-'Sendable' type 'Expression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let seqColumn = Expression<Int64>("seq")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:213:16: note: add '@MainActor' to make static property 'seqColumn' part of global actor 'MainActor'
    static let seqColumn = Expression<Int64>("seq")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:213:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let seqColumn = Expression<Int64>("seq")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:214:16: warning: static property 'tableColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let tableColumn = Expression<String>("table")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:214:16: note: add '@MainActor' to make static property 'tableColumn' part of global actor 'MainActor'
    static let tableColumn = Expression<String>("table")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:214:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let tableColumn = Expression<String>("table")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:215:16: warning: static property 'fromColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let fromColumn = Expression<String>("from")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:215:16: note: add '@MainActor' to make static property 'fromColumn' part of global actor 'MainActor'
    static let fromColumn = Expression<String>("from")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:215:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let fromColumn = Expression<String>("from")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:216:16: warning: static property 'toColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String?>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let toColumn = Expression<String?>("to") // when null, use primary key
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:216:16: note: add '@MainActor' to make static property 'toColumn' part of global actor 'MainActor'
    static let toColumn = Expression<String?>("to") // when null, use primary key
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:216:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let toColumn = Expression<String?>("to") // when null, use primary key
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:217:16: warning: static property 'onUpdateColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let onUpdateColumn = Expression<String>("on_update")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:217:16: note: add '@MainActor' to make static property 'onUpdateColumn' part of global actor 'MainActor'
    static let onUpdateColumn = Expression<String>("on_update")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:217:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let onUpdateColumn = Expression<String>("on_update")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:218:16: warning: static property 'onDeleteColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let onDeleteColumn = Expression<String>("on_delete")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:218:16: note: add '@MainActor' to make static property 'onDeleteColumn' part of global actor 'MainActor'
    static let onDeleteColumn = Expression<String>("on_delete")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:218:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let onDeleteColumn = Expression<String>("on_delete")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:219:16: warning: static property 'matchColumn' is not concurrency-safe because non-'Sendable' type 'Expression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let matchColumn = Expression<String>("match")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Expression.swift:56:15: note: consider making generic struct 'Expression' conform to the 'Sendable' protocol
public struct Expression<Datatype>: ExpressionType {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:219:16: note: add '@MainActor' to make static property 'matchColumn' part of global actor 'MainActor'
    static let matchColumn = Expression<String>("match")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaReader.swift:219:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let matchColumn = Expression<String>("match")
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/AggregateFunctions.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling RTree.swift, Foundation.swift, Helpers.swift, Connection+Schema.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftCompile normal arm64_32 Compiling\ Schema.swift,\ Setter.swift,\ WindowFunctions.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Schema.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Setter.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/WindowFunctions.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Schema.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/Setter.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SQLite/Typed/WindowFunctions.swift (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling SQLiteFeature.swift, SQLiteVersion.swift, Statement.swift, URIQueryParameter.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftDriverJobDiscovery normal armv7k Compiling Value.swift, Cipher.swift, FTS4.swift, FTS5.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftDriverJobDiscovery normal arm64 Compiling Connection+Pragmas.swift, Connection.swift, Errors.swift, Result.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftDriverJobDiscovery normal arm64 Compiling Backup.swift, Blob.swift, Connection+Aggregation.swift, Connection+Attach.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftDriverJobDiscovery normal arm64 Compiling Value.swift, Cipher.swift, FTS4.swift, FTS5.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftDriverJobDiscovery normal armv7k Compiling Schema.swift, Setter.swift, WindowFunctions.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftDriverJobDiscovery normal armv7k Compiling Coding.swift, Collation.swift, CoreFunctions.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftDriverJobDiscovery normal arm64_32 Compiling Schema.swift, Setter.swift, WindowFunctions.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftDriver\ Compilation SQLite normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SQLite -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64_32/SQLite.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.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.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.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64_32/SQLite-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/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64_32/SQLite.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64_32/SQLite_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/SQLite.swift.build/Debug-watchos/SQLite.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.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/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64_32/SQLite-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/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64_32/Binary/SQLite.o normal arm64_32 (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos4.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.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.3.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.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64_32/SQLite.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64_32/SQLite_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64_32/SQLite_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.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/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64_32/SQLite.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64_32/Binary/SQLite.o
SwiftDriverJobDiscovery normal arm64 Compiling SchemaChanger.swift, SchemaDefinitions.swift, SchemaReader.swift, AggregateFunctions.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftDriverJobDiscovery normal arm64 Compiling Operators.swift, Query+with.swift, Query.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftDriver\ Compilation SQLite normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SQLite -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64/SQLite.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.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.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.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64/SQLite-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/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64/SQLite.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64/SQLite_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/SQLite.swift.build/Debug-watchos/SQLite.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.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/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64/SQLite-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/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64/Binary/SQLite.o normal arm64 (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos4.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.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.3.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.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64/SQLite.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64/SQLite_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64/SQLite_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.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/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64/SQLite.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64/Binary/SQLite.o
SwiftDriverJobDiscovery normal armv7k Compiling Operators.swift, Query+with.swift, Query.swift (in target 'SQLite' from project 'SQLite.swift')
SwiftDriver\ Compilation SQLite normal armv7k com.apple.xcode.tools.swift.compiler (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SQLite -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/armv7k/SQLite.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.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.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.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/armv7k/SQLite-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/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/armv7k/SQLite.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/armv7k/SQLite_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/SQLite.swift.build/Debug-watchos/SQLite.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.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/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/armv7k/SQLite-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/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/armv7k/Binary/SQLite.o normal armv7k (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos4.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.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.3.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.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/armv7k/SQLite.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/armv7k/SQLite_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/armv7k/SQLite_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.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/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/armv7k/SQLite.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/armv7k/Binary/SQLite.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLite.o normal arm64\ armv7k\ arm64_32 (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64/Binary/SQLite.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/armv7k/Binary/SQLite.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64_32/Binary/SQLite.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLite.o
ExtractAppIntentsMetadata (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name SQLite --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk --xcode-version 16E140 --platform-family watchOS --deployment-target 4.0 --bundle-identifier spi-builder-workspace.SQLite --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLite.appintents --target-triple arm64-apple-watchos4.0 --target-triple armv7k-apple-watchos4.0 --target-triple arm64_32-apple-watchos4.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLite.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64/SQLite_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/armv7k/SQLite_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64_32/SQLite_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64/SQLite.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/armv7k/SQLite.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64_32/SQLite.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/SQLite.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/SQLite.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64/SQLite.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/armv7k/SQLite.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLite.swift.build/Debug-watchos/SQLite.build/Objects-normal/arm64_32/SQLite.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-06-13 15:10:34.980 appintentsmetadataprocessor[788:4635] Starting appintentsmetadataprocessor export
2025-06-13 15:10:35.022 appintentsmetadataprocessor[788:4635] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLite.o (in target 'SQLite' from project 'SQLite.swift')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SQLite.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-toolchain-sqlite",
      "requirement" : {
        "exact" : [
          "1.0.4"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-toolchain-sqlite"
    }
  ],
  "manifest_display_name" : "SQLite.swift",
  "name" : "SQLite.swift",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "12.0"
    },
    {
      "name" : "macos",
      "version" : "10.13"
    },
    {
      "name" : "watchos",
      "version" : "4.0"
    },
    {
      "name" : "tvos",
      "version" : "12.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "SQLite",
      "targets" : [
        "SQLite"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SQLiteTests",
      "module_type" : "SwiftTarget",
      "name" : "SQLiteTests",
      "path" : "Tests/SQLiteTests",
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/SQLiteTests/Resources",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "Core/BlobTests.swift",
        "Core/Connection+AttachTests.swift",
        "Core/Connection+PragmaTests.swift",
        "Core/ConnectionTests.swift",
        "Core/CoreFunctionsTests.swift",
        "Core/ResultTests.swift",
        "Core/StatementTests.swift",
        "Core/ValueTests.swift",
        "Extensions/CipherTests.swift",
        "Extensions/FTS4Tests.swift",
        "Extensions/FTS5Tests.swift",
        "Extensions/FTSIntegrationTests.swift",
        "Extensions/RTreeTests.swift",
        "Fixtures.swift",
        "FoundationTests.swift",
        "Schema/Connection+SchemaTests.swift",
        "Schema/SchemaChangerTests.swift",
        "Schema/SchemaDefinitionsTests.swift",
        "Schema/SchemaReaderTests.swift",
        "Schema/SchemaTests.swift",
        "TestHelpers.swift",
        "Typed/AggregateFunctionsTests.swift",
        "Typed/CustomAggregationTests.swift",
        "Typed/CustomFunctionsTests.swift",
        "Typed/DateAndTimeFunctionTests.swift",
        "Typed/ExpressionTests.swift",
        "Typed/OperatorsTests.swift",
        "Typed/QueryIntegrationTests.swift",
        "Typed/QueryTests.swift",
        "Typed/RowTests.swift",
        "Typed/SelectTests.swift",
        "Typed/SetterTests.swift",
        "Typed/WindowFunctionsTests.swift"
      ],
      "target_dependencies" : [
        "SQLite"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SQLite",
      "module_type" : "SwiftTarget",
      "name" : "SQLite",
      "path" : "Sources/SQLite",
      "product_dependencies" : [
        "SwiftToolchainCSQLite"
      ],
      "product_memberships" : [
        "SQLite"
      ],
      "sources" : [
        "Core/Backup.swift",
        "Core/Blob.swift",
        "Core/Connection+Aggregation.swift",
        "Core/Connection+Attach.swift",
        "Core/Connection+Pragmas.swift",
        "Core/Connection.swift",
        "Core/Errors.swift",
        "Core/Result.swift",
        "Core/SQLiteFeature.swift",
        "Core/SQLiteVersion.swift",
        "Core/Statement.swift",
        "Core/URIQueryParameter.swift",
        "Core/Value.swift",
        "Extensions/Cipher.swift",
        "Extensions/FTS4.swift",
        "Extensions/FTS5.swift",
        "Extensions/RTree.swift",
        "Foundation.swift",
        "Helpers.swift",
        "Schema/Connection+Schema.swift",
        "Schema/SchemaChanger.swift",
        "Schema/SchemaDefinitions.swift",
        "Schema/SchemaReader.swift",
        "Typed/AggregateFunctions.swift",
        "Typed/Coding.swift",
        "Typed/Collation.swift",
        "Typed/CoreFunctions.swift",
        "Typed/CustomFunctions.swift",
        "Typed/DateAndTimeFunctions.swift",
        "Typed/Expression.swift",
        "Typed/Operators.swift",
        "Typed/Query+with.swift",
        "Typed/Query.swift",
        "Typed/Schema.swift",
        "Typed/Setter.swift",
        "Typed/WindowFunctions.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.