11 lines
281 B
Bash
Executable file
11 lines
281 B
Bash
Executable file
#!/bin/bash
|
|
repo='https://github.com/sqlite/sqlite.git'
|
|
. test/thirdparty/common
|
|
git reset --hard 86f477edaa17767b39c7bae5b67cac8580f7a8c1
|
|
|
|
CC=$chibicc CFLAGS=-D_GNU_SOURCE ./configure
|
|
sed -i 's/^wl=.*/wl=-Wl,/; s/^pic_flag=.*/pic_flag=-fPIC/' libtool
|
|
$make clean
|
|
$make
|
|
$make test
|