repertory/support/3rd_party/sqlite_configure.sh
Scott E. Graves 1f43ab3bcc
Some checks are pending
BlockStorage/repertory/pipeline/head Build queued...
updated build system
2024-08-03 10:28:17 -05:00

13 lines
235 B
Bash
Executable File

#!/bin/bash
if [ "$1" == "mingw64" ]; then
HOST_CFG=--host=x86_64-w64-mingw32
fi
CFLAGS="-O3 -march=$2 -mtune=generic" ./configure \
--disable-tcl \
--enable-shared=yes \
--enable-static=yes \
--prefix="$3" \
${HOST_CFG}