minetest-wasm/build_sqlite3.sh

14 lines
256 B
Bash
Raw Permalink Normal View History

2022-03-29 20:04:49 -07:00
#!/bin/bash -eux
source common.sh
unpack_source SQLite
2022-03-29 20:04:49 -07:00
pushd "$BUILD_DIR/SQLite"
2022-03-29 20:04:49 -07:00
export BUILD_CC="gcc"
2023-08-24 09:25:16 -07:00
emconfigure ./configure --disable-tcl --disable-shared --prefix="$INSTALL_DIR" cross_compiling=yes
2022-03-29 20:04:49 -07:00
emmake make
emmake make install
echo "sqlite3 OK"