Files
first/build.sh
2023-12-31 16:07:58 +01:00

8 lines
158 B
Bash

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