From 1569f9437417661df12415faf1d5826cfbc8a71a Mon Sep 17 00:00:00 2001 From: Krzosa Karol Date: Sun, 31 Dec 2023 10:23:27 +0100 Subject: [PATCH] Fix build.sh --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 5f2d6c4..3548691 100644 --- a/build.sh +++ b/build.sh @@ -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 .. \ No newline at end of file