Fix build.sh

This commit is contained in:
Krzosa Karol
2023-12-31 10:23:27 +01:00
parent a3c09bf50c
commit 1569f94374

View File

@@ -3,6 +3,6 @@ set -e
mkdir build
cd build
clang -o first ../test/test_arena.cpp -Wno-writable-strings
./first
clang -o test_arena ../test/test_arena.cpp -fno-exceptions -fno-rtti -Wno-writable-strings
./test_arena
cd ..