diff --git a/support/3rd_party/sqlite-3.46.0.tar.gz b/support/3rd_party/sqlite-3.46.0.tar.gz new file mode 100644 index 00000000..171c023e Binary files /dev/null and b/support/3rd_party/sqlite-3.46.0.tar.gz differ diff --git a/support/3rd_party/sqlite-3.46.0.tar.gz.sha256 b/support/3rd_party/sqlite-3.46.0.tar.gz.sha256 new file mode 100644 index 00000000..6793cc02 --- /dev/null +++ b/support/3rd_party/sqlite-3.46.0.tar.gz.sha256 @@ -0,0 +1 @@ +ae85b5545f6171694f4d7f915e8e87a936fcb1a56409e5fb3da89d52e3c224cc sqlite-3.46.0.tar.gz diff --git a/support/3rd_party/sqlite_configure.sh b/support/3rd_party/sqlite_configure.sh new file mode 100755 index 00000000..c15a8e80 --- /dev/null +++ b/support/3rd_party/sqlite_configure.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +if [ "$1" == "mingw64" ]; then + HOST_CFG=--host=x86_64-w64-mingw32 +fi + +CFLAGS="-O3 -march=$2 -mtune=generic" ./configure \ + --disable-amalgamation \ + --disable-tcl \ + --enable-shared=yes \ + --enable-static=yes \ + --prefix="$3" \ + ${HOST_CFG}