Skip to content

Instantly share code, notes, and snippets.

@skypesky
Created December 19, 2025 13:25
Show Gist options
  • Select an option

  • Save skypesky/8eb7867f2899f424a5aec30e16a47a27 to your computer and use it in GitHub Desktop.

Select an option

Save skypesky/8eb7867f2899f424a5aec30e16a47a27 to your computer and use it in GitHub Desktop.
How to build sqlite3 from source code(Mac OS)
mkdir -p ~/test && cd ~/test
wget https://www.sqlite.org/2023/sqlite-amalgamation-3430200.zip # 3.43.2 对应压缩包
unzip sqlite-amalgamation-3430200.zip
cd sqlite-amalgamation-3430200
gcc -arch arm64 -DSQLITE_ENABLE_LOAD_EXTENSION=1 -DSQLITE_ENABLE_FTS5=1 -DSQLITE_ENABLE_SESSION -DSQLITE_ENABLE_PREUPDATE_HOOK -o sqlite3 shell.c sqlite3.c -lpthread -lm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment