updated build system

This commit is contained in:
Scott E. Graves 2024-08-03 07:33:30 -05:00
parent f6ea8f077b
commit d6ff728a4d
3 changed files with 14 additions and 0 deletions

BIN
support/3rd_party/sqlite-3.46.0.tar.gz vendored Normal file

Binary file not shown.

View File

@ -0,0 +1 @@
ae85b5545f6171694f4d7f915e8e87a936fcb1a56409e5fb3da89d52e3c224cc sqlite-3.46.0.tar.gz

13
support/3rd_party/sqlite_configure.sh vendored Executable file
View File

@ -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}