mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-11 21:49:13 +00:00
33 lines
1.1 KiB
Bash
Executable File
33 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
cd -P -- "$(dirname -- "$0")"
|
|
|
|
ROOT=../../../../
|
|
BINARYEN="$ROOT/tools/binaryen/bin"
|
|
WASI_SDK="$ROOT/tools/wasi-sdk/bin"
|
|
|
|
"$WASI_SDK/clang" --target=wasm32-wasi -std=c23 -g0 -O2 \
|
|
-o mptest.wasm main.c \
|
|
-I"$ROOT/sqlite3" \
|
|
-msimd128 -mmutable-globals -mmultivalue \
|
|
-mbulk-memory -mreference-types \
|
|
-mnontrapping-fptoint -msign-ext \
|
|
-fno-stack-protector -fno-stack-clash-protection \
|
|
-Wl,--stack-first \
|
|
-Wl,--import-undefined \
|
|
-D_HAVE_SQLITE_CONFIG_H -DSQLITE_USE_URI \
|
|
-DSQLITE_DEFAULT_SYNCHRONOUS=0 \
|
|
-DSQLITE_DEFAULT_LOCKING_MODE=0 \
|
|
-DSQLITE_NO_SYNC -DSQLITE_THREADSAFE=0 \
|
|
-DSQLITE_OMIT_LOAD_EXTENSION -DHAVE_USLEEP \
|
|
-DSQLITE_CUSTOM_INCLUDE=sqlite_opt.h \
|
|
-D_WASI_EMULATED_GETPID -lwasi-emulated-getpid \
|
|
$(awk '{print "-Wl,--export="$0}' exports.txt)
|
|
|
|
"$BINARYEN/wasm-opt" -g --strip --strip-producers -c -O3 \
|
|
mptest.wasm -o mptest.tmp \
|
|
--enable-simd --enable-mutable-globals --enable-multivalue \
|
|
--enable-bulk-memory --enable-reference-types \
|
|
--enable-nontrapping-float-to-int --enable-sign-ext
|
|
mv mptest.tmp mptest.wasm |