Skip to content

Instantly share code, notes, and snippets.

@fractaledmind
Last active September 8, 2023 13:18
Show Gist options
  • Save fractaledmind/6e8e2a06c316c60d64cd0c3dffc7fade to your computer and use it in GitHub Desktop.
Save fractaledmind/6e8e2a06c316c60d64cd0c3dffc7fade to your computer and use it in GitHub Desktop.
Shell script to install and compile project-local SQLite
#!/usr/bin/env sh
cd ../vendor
mkdir -p sqlite/bin
mkdir -p sqlite/lib
mkdir -p sqlite/include
# ============================================================================================================
# Compile and install sqlite3 (for performance turning and build customizations)
# SEE: https://www.sqlite.org/compile.html
# NOTE: The sqlite3 Ruby gem will not work with the following compile time flags
# * -DSQLITE_OMIT_DEPRECATED
# ============================================================================================================
curl --remote-name --remote-header-name https://www.sqlite.org/2023/sqlite-amalgamation-3430000.zip && unzip sqlite-amalgamation-3430000.zip
cd sqlite-amalgamation-3430000
PREPROCESSOR_FLAGS=(
-DSQLITE_DEFAULT_MEMSTATUS=0
-DSQLITE_DEFAULT_WAL_SYNCHRONOUS=1
-DSQLITE_DQS=0
-DSQLITE_ENABLE_FTS5
-DSQLITE_LIKE_DOESNT_MATCH_BLOBS
-DSQLITE_MAX_EXPR_DEPTH=0
-DSQLITE_OMIT_PROGRESS_CALLBACK
-DSQLITE_OMIT_SHARED_CACHE
-DSQLITE_USE_ALLOCA
)
# compile the executable
gcc "${PREPROCESSOR_FLAGS[@]}" shell.c sqlite3.c -lpthread -ldl -lm -o ../sqlite/bin/sqlite3
# compile and setup shared library
gcc "${PREPROCESSOR_FLAGS[@]}" shell.c sqlite3.c -lpthread -ldl -lm -fPIC -shared -o ../sqlite/lib/libsqlite3.so && \
chmod 755 ../sqlite/lib/libsqlite3.so && \
ln -s ../sqlite/lib/libsqlite3.so ../sqlite/lib/libsqlite3.so.0
# copy header/include files
mkdir -p ../sqlite/include/sqlite3 && \
cp sqlite3.h ../sqlite/include/ && \
cp sqlite3ext.h ../sqlite/include/
# cleanup
PREPROCESSOR_FLAGS=""
# configure bundler to be aware of the custom sqlite3 installation
BUILD_SQLITE3="true"
bundle config set build.sqlite3 --enable-system-libraries --with-opt-dir=./vendor/sqlite
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment