The Swift Package Index logo.Swift Package Index

Build Information

Failed to build SQLite.swift, reference 0.16.0 (964c30), with Swift 6.1 for Wasm on 8 Mar 2026 20:16:17 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/stephencelis/SQLite.swift.git
Reference: 0.16.0
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/stephencelis/SQLite.swift
 * tag               0.16.0     -> FETCH_HEAD
HEAD is now at 964c300 Merge pull request #1353 from stephencelis/prepare-0.16.0
Cloned https://github.com/stephencelis/SQLite.swift.git
Revision (git rev-parse @):
964c300fb0736699ce945c9edb56ecd62eba27a3
SUCCESS checkout https://github.com/stephencelis/SQLite.swift.git at 0.16.0
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/stephencelis/SQLite.swift.git
https://github.com/stephencelis/SQLite.swift.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
    {
      "identity" : "csqlite",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "3.50.4",
            "upper_bound" : "4.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/stephencelis/CSQLite"
    },
    {
      "identity" : "sqlcipher.swift",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.11.0",
            "upper_bound" : "5.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/sqlcipher/SQLCipher.swift"
    }
  ],
  "manifest_display_name" : "SQLite.swift",
  "name" : "SQLite.swift",
  "path" : "/host/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"
        ]
      }
    },
    {
      "name" : "SQLite-Dynamic",
      "targets" : [
        "SQLite"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "SQLiteTests",
      "module_type" : "SwiftTarget",
      "name" : "SQLiteTests",
      "path" : "Tests/SQLiteTests",
      "resources" : [
        {
          "path" : "/host/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/FTS5IntegrationTests.swift",
        "Extensions/FTS5Tests.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" : [
        "SQLiteSwiftCSQLite",
        "SQLCipher"
      ],
      "product_memberships" : [
        "SQLite",
        "SQLite-Dynamic"
      ],
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Sources/SQLite/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "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" : "6.1"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:58b971189c4d3c564696bb40c86e07506670ed096ab7351a005c7c449525017a
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Fetching https://github.com/stephencelis/CSQLite
Fetching https://github.com/sqlcipher/SQLCipher.swift
[1/200] Fetching csqlite
[141/310] Fetching csqlite, sqlcipher.swift
Fetched https://github.com/sqlcipher/SQLCipher.swift from cache (0.58s)
Fetched https://github.com/stephencelis/CSQLite from cache (0.75s)
Computing version for https://github.com/stephencelis/CSQLite
Computed https://github.com/stephencelis/CSQLite at 3.50.4 (1.34s)
Computing version for https://github.com/sqlcipher/SQLCipher.swift
Computed https://github.com/sqlcipher/SQLCipher.swift at 4.13.0 (0.56s)
Creating working copy for https://github.com/stephencelis/CSQLite
Working copy of https://github.com/stephencelis/CSQLite resolved at 3.50.4
Creating working copy for https://github.com/sqlcipher/SQLCipher.swift
Working copy of https://github.com/sqlcipher/SQLCipher.swift resolved at 4.13.0
Downloading binary artifact https://github.com/sqlcipher/SQLCipher.swift/releases/download/4.13.0/SQLCipher.xcframework.zip
[908/46908096] Downloading https://github.com/sqlcipher/SQLCipher.swift/releases/download/4.13.0/SQLCipher.xcframework.zip
Downloaded https://github.com/sqlcipher/SQLCipher.swift/releases/download/4.13.0/SQLCipher.xcframework.zip (5.13s)
Building for debugging...
[0/7] Write sources
[1/7] Copying PrivacyInfo.xcprivacy
[2/7] Write swift-version-24593BA9C3E375BF.txt
[3/7] Compiling SQLiteSwiftCSQLite sqlite3.c
[5/41] Compiling SQLite Collation.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[6/41] Compiling SQLite CoreFunctions.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[7/41] Compiling SQLite CustomFunctions.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[8/41] Compiling SQLite DateAndTimeFunctions.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[9/45] Compiling SQLite FTS5.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[10/45] Compiling SQLite RTree.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[11/45] Compiling SQLite Foundation.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[12/45] Compiling SQLite Helpers.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[13/45] Compiling SQLite Connection+Schema.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
error: emit-module command failed with exit code 1 (use -v to see invocation)
[14/45] Emitting module SQLite
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[15/45] Compiling SQLite Backup.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[16/45] Compiling SQLite Blob.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[17/45] Compiling SQLite Connection+Aggregation.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[18/45] Compiling SQLite Connection+Attach.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[19/45] Compiling SQLite Connection+Pragmas.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[20/45] Compiling SQLite Expression.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[21/45] Compiling SQLite Operators.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[22/45] Compiling SQLite Query+with.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[23/45] Compiling SQLite Query.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[24/45] Compiling SQLite SchemaChanger.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[25/45] Compiling SQLite SchemaDefinitions.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[26/45] Compiling SQLite SchemaReader.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[27/45] Compiling SQLite AggregateFunctions.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[28/45] Compiling SQLite Coding.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[29/45] Compiling SQLite Connection.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[30/45] Compiling SQLite Errors.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[31/45] Compiling SQLite Result.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[32/45] Compiling SQLite SQLiteFeature.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[33/45] Compiling SQLite SQLiteVersion.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[34/45] Compiling SQLite Statement.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[35/45] Compiling SQLite URIQueryParameter.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[36/45] Compiling SQLite Value.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[37/45] Compiling SQLite Cipher.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[38/45] Compiling SQLite FTS4.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[39/45] Compiling SQLite Schema.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[40/45] Compiling SQLite Setter.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[41/45] Compiling SQLite WindowFunctions.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[42/45] Compiling SQLite resource_bundle_accessor.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:58b971189c4d3c564696bb40c86e07506670ed096ab7351a005c7c449525017a
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
[0/1] Planning build
Building for debugging...
[0/4] Write swift-version-24593BA9C3E375BF.txt
[2/38] Compiling SQLite Connection.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[3/38] Compiling SQLite Errors.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[4/38] Compiling SQLite Result.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[5/38] Compiling SQLite SQLiteFeature.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[6/38] Compiling SQLite SQLiteVersion.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[7/38] Compiling SQLite FTS5.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[8/38] Compiling SQLite RTree.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[9/38] Compiling SQLite Foundation.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[10/38] Compiling SQLite Helpers.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[11/38] Compiling SQLite Connection+Schema.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
error: emit-module command failed with exit code 1 (use -v to see invocation)
[12/42] Emitting module SQLite
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[13/42] Compiling SQLite Backup.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[14/42] Compiling SQLite Blob.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[15/42] Compiling SQLite Connection+Aggregation.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[16/42] Compiling SQLite Connection+Attach.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[17/42] Compiling SQLite Connection+Pragmas.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[18/42] Compiling SQLite Schema.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[19/42] Compiling SQLite Setter.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[20/42] Compiling SQLite WindowFunctions.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[21/42] Compiling SQLite resource_bundle_accessor.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[22/42] Compiling SQLite Statement.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[23/42] Compiling SQLite URIQueryParameter.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[24/42] Compiling SQLite Value.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[25/42] Compiling SQLite Cipher.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[26/42] Compiling SQLite FTS4.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[27/42] Compiling SQLite Expression.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[28/42] Compiling SQLite Operators.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[29/42] Compiling SQLite Query+with.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[30/42] Compiling SQLite Query.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[31/42] Compiling SQLite Collation.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[32/42] Compiling SQLite CoreFunctions.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[33/42] Compiling SQLite CustomFunctions.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[34/42] Compiling SQLite DateAndTimeFunctions.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[35/42] Compiling SQLite SchemaChanger.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[36/42] Compiling SQLite SchemaDefinitions.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[37/42] Compiling SQLite SchemaReader.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[38/42] Compiling SQLite AggregateFunctions.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
[39/42] Compiling SQLite Coding.swift
/host/spi-builder-workspace/Sources/SQLite/Core/Backup.swift:26:8: error: no such module 'Dispatch'
 24 |
 25 | import Foundation
 26 | import Dispatch
    |        `- error: no such module 'Dispatch'
 27 | #if StandaloneSQLite
 28 | import sqlite3
BUILD FAILURE 6.1 wasm