Skip to content

Instantly share code, notes, and snippets.

@vladfaust
Forked from zeljic/build_sqlite3_lib.md
Created August 18, 2020 17:31
Show Gist options
  • Save vladfaust/203be31dfc3f262bee48d5885bd1c760 to your computer and use it in GitHub Desktop.
Save vladfaust/203be31dfc3f262bee48d5885bd1c760 to your computer and use it in GitHub Desktop.
Build SQLite3 .lib file on windows

How to build SQLite3 .lib file on Windows 10

  1. Download source from source (https://www.sqlite.org/download.html)

    For example: source https://www.sqlite.org/2020/sqlite-amalgamation-3310100.zip

  2. Download binary from binary

    For example: binary https://www.sqlite.org/2020/sqlite-dll-win64-x64-3310100.zip

  3. Extract both archives to the same directory

  4. Open Developer Command Prompt for VS 2017 by typing Developer Command in Windows Search

  5. Go to directory where you've extracted source code and binary files (via opened cmd)

  6. Run lib /DEF:sqlite3.def /OUT:sqlite3.lib /MACHINE:x64

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment