Rm header, fix build script

This commit is contained in:
Paul W. 2024-10-06 18:15:29 -04:00
parent 0bf45d236c
commit e5c1ddcfc3
Signed by: lambdapaul
GPG Key ID: 0D207B4EBC14B1BD
4 changed files with 3 additions and 13430 deletions

Binary file not shown.

View File

@ -13,13 +13,11 @@ elif gcfc -v &> /dev/null; then
CC=gcc
else
echo "Missing 'gcc'/ 'clang'"
exit
exit 1
fi
if [ $OS == "Darwin" ]; then
if libtool -V &> /dev/null; then
echo "Missing 'libtool'"
fi
libtool -V &> /dev/null || { echo "Missing 'libtool'"; exit 2 }
fi
$CC -c -O3 -Qn "./sqlite3.c" -DSQLITE_OMIT_DEPRECATED -DSQLITE_OMIT_UTF16 -DSQLITE_OMIT_TEST_CONTROL

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
//+private
#+private
package sqlite3_odin_tests
import "base:runtime"