Build Information
Failed to build SQLite, reference master (e4e889
), with Swift 6.2 (beta) for Wasm on 18 Jun 2025 14:51:29 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.2-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/pixelspark/sqlite.git
Reference: master
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/pixelspark/sqlite
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at e4e8891 Upgrade to Swift 4
Cloned https://github.com/pixelspark/sqlite.git
Revision (git rev-parse @):
e4e889123447390620824a6fda52e035802e3bde
SUCCESS checkout https://github.com/pixelspark/sqlite.git at master
========================================
Build
========================================
Selected platform: wasm
Swift version: 6.2
Building package at path: $PWD
https://github.com/pixelspark/sqlite.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.2-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:44384f43f933eaa0f42803e9ef7c3d8388c5841ccc831a15a5edf63d8c273423
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.2-latest
Building for debugging...
[0/3] Write sources
[1/3] Write swift-version-24593BA9C3E375BF.txt
In file included from /host/spi-builder-workspace/Sources/CSQLite/sqlite3.c:29786:
/root/.swiftpm/swift-sdks/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-30-a_wasm.artifactbundle/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-30-a_wasm/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/sys/mman.h:2:2: error: "WASI lacks a true mmap; to enable minimal mmap emulation, compile with -D_WASI_EMULATED_MMAN and link with -lwasi-emulated-mman"
2 | #error "WASI lacks a true mmap; to enable minimal mmap emulation, \
| ^
/host/spi-builder-workspace/Sources/CSQLite/sqlite3.c:30338:42: error: use of undeclared identifier 'fchown'
30338 | { "fchown", (sqlite3_syscall_ptr)fchown, 0 },
| ^
/host/spi-builder-workspace/Sources/CSQLite/sqlite3.c:30344:42: error: use of undeclared identifier 'geteuid'
30344 | { "geteuid", (sqlite3_syscall_ptr)geteuid, 0 },
| ^
/host/spi-builder-workspace/Sources/CSQLite/sqlite3.c:30348:42: error: use of undeclared identifier 'mmap'
30348 | { "mmap", (sqlite3_syscall_ptr)mmap, 0 },
| ^
/host/spi-builder-workspace/Sources/CSQLite/sqlite3.c:30355:42: error: use of undeclared identifier 'munmap'
30355 | { "munmap", (sqlite3_syscall_ptr)munmap, 0 },
| ^
/host/spi-builder-workspace/Sources/CSQLite/sqlite3.c:30425:22: error: invalid application of 'sizeof' to an incomplete type 'struct unix_syscall[]'
30425 | for(i=0; i<sizeof(aSyscall)/sizeof(aSyscall[0]); i++){
| ^~~~~~~~~~
/host/spi-builder-workspace/Sources/CSQLite/sqlite3.c:30434:22: error: invalid application of 'sizeof' to an incomplete type 'struct unix_syscall[]'
30434 | for(i=0; i<sizeof(aSyscall)/sizeof(aSyscall[0]); i++){
| ^~~~~~~~~~
/host/spi-builder-workspace/Sources/CSQLite/sqlite3.c:30461:20: error: invalid application of 'sizeof' to an incomplete type 'struct unix_syscall[]'
30461 | for(i=0; i<sizeof(aSyscall)/sizeof(aSyscall[0]); i++){
| ^~~~~~~~~~
/host/spi-builder-workspace/Sources/CSQLite/sqlite3.c:30478:16: error: invalid application of 'sizeof' to an incomplete type 'struct unix_syscall[]'
30478 | for(i=0; i<ArraySize(aSyscall)-1; i++){
| ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/CSQLite/sqlite3.c:12070:38: note: expanded from macro 'ArraySize'
12070 | #define ArraySize(X) ((int)(sizeof(X)/sizeof(X[0])))
| ^~~
/host/spi-builder-workspace/Sources/CSQLite/sqlite3.c:30482:14: error: invalid application of 'sizeof' to an incomplete type 'struct unix_syscall[]'
30482 | for(i++; i<ArraySize(aSyscall); i++){
| ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/CSQLite/sqlite3.c:12070:38: note: expanded from macro 'ArraySize'
12070 | #define ArraySize(X) ((int)(sizeof(X)/sizeof(X[0])))
| ^~~
/host/spi-builder-workspace/Sources/CSQLite/sqlite3.c:31308:19: error: use of undeclared identifier 'F_WRLCK'
31308 | lock.l_type = F_WRLCK;
| ^
/host/spi-builder-workspace/Sources/CSQLite/sqlite3.c:31309:27: error: use of undeclared identifier 'F_GETLK'
31309 | if( osFcntl(pFile->h, F_GETLK, &lock) ){
| ^
/host/spi-builder-workspace/Sources/CSQLite/sqlite3.c:31312:29: error: use of undeclared identifier 'F_UNLCK'
31312 | } else if( lock.l_type!=F_UNLCK ){
| ^
/host/spi-builder-workspace/Sources/CSQLite/sqlite3.c:31356:21: error: use of undeclared identifier 'F_WRLCK'
31356 | lock.l_type = F_WRLCK;
| ^
/host/spi-builder-workspace/Sources/CSQLite/sqlite3.c:31357:30: error: use of undeclared identifier 'F_SETLK'; did you mean 'FD_SET'?
31357 | rc = osFcntl(pFile->h, F_SETLK, &lock);
| ^~~~~~~
| FD_SET
/root/.swiftpm/swift-sdks/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-30-a_wasm.artifactbundle/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-30-a_wasm/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/__fd_set.h:42:22: note: 'FD_SET' declared here
42 | static __inline void FD_SET(int __fd, fd_set *__set) {
| ^
/host/spi-builder-workspace/Sources/CSQLite/sqlite3.c:31365:28: error: use of undeclared identifier 'F_SETLK'; did you mean 'FD_SET'?
31365 | rc = osFcntl(pFile->h, F_SETLK, pLock);
| ^~~~~~~
| FD_SET
/root/.swiftpm/swift-sdks/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-30-a_wasm.artifactbundle/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-30-a_wasm/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/__fd_set.h:42:22: note: 'FD_SET' declared here
42 | static __inline void FD_SET(int __fd, fd_set *__set) {
| ^
/host/spi-builder-workspace/Sources/CSQLite/sqlite3.c:31505:43: error: use of undeclared identifier 'F_RDLCK'
31505 | lock.l_type = (eFileLock==SHARED_LOCK?F_RDLCK:F_WRLCK);
| ^
/host/spi-builder-workspace/Sources/CSQLite/sqlite3.c:31505:51: error: use of undeclared identifier 'F_WRLCK'
31505 | lock.l_type = (eFileLock==SHARED_LOCK?F_RDLCK:F_WRLCK);
| ^
/host/spi-builder-workspace/Sources/CSQLite/sqlite3.c:31537:19: error: use of undeclared identifier 'F_UNLCK'
31537 | lock.l_type = F_UNLCK;
| ^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
20 errors generated.
[2/3] Compiling CSQLite sqlite3.c
BUILD FAILURE 6.2 wasm