JavaScript promise rejection: Loading CSS chunk index-domready failed. (error: https://sirherobrine23.com.br/assets/css/index-domready.9de057c0.css). Open browser console to see more details.
0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-07-07 12:45:50 +00:00
Files
libsql/libsql-sqlite3/tool/pre-release.sh
2023-10-16 13:58:16 +02:00

17 lines
519 B
Bash
Executable File

#!/usr/bin/env bash
# Compiles libSQL in the following flavors:
# - vanilla
# - with Wasm user-defined functions support linked statically
# - with Wasm user-defined functions support linked as a separate dynamic library
if [[ "$#" != "1" ]]; then
echo "Usage: $0 <release-number>"
exit 1
fi
for mode in "" "--enable-wasm-runtime" "--enable-wasm-runtime-dynamic"; do
echo Mode: ${mode:-regular}
./configure --enable-releasemode --enable-all $mode && make -j12 && ./tool/generate-artifacts.sh
done