updated build system

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

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}