diff options
Diffstat (limited to 'test-build.sh')
-rwxr-xr-x | test-build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-build.sh b/test-build.sh index ec63972..45a44f7 100755 --- a/test-build.sh +++ b/test-build.sh @@ -1,5 +1,5 @@ #!/bin/sh -echo "tcc -w main.c -o toc" && tcc -w main.c -o toc || exit 1 +echo "tcc -Wall main.c -o toc" && tcc -Wall main.c -o toc || exit 1 # test without any compiler flags for CC in tcc gcc clang g++ ; do CC="$CC" CFLAGS='-Werror' ./build.sh || exit 1 CC="$CC" CFLAGS='-Werror' ./build.sh release || exit 1 |