Files
first/build.sh
Krzosa Karol 1569f94374 Fix build.sh
2023-12-31 10:23:27 +01:00

8 lines
158 B
Bash

#!/usr/bin/env bash
set -e
mkdir build
cd build
clang -o test_arena ../test/test_arena.cpp -fno-exceptions -fno-rtti -Wno-writable-strings
./test_arena
cd ..