Small script cleanup

This commit is contained in:
Krzosa Karol
2024-01-05 14:15:13 +01:00
parent cc1a90e96b
commit ea5842a454
2 changed files with 3 additions and 18 deletions

View File

@@ -1,18 +1,3 @@
#!/usr/bin/env bash
mkdir build
cd build
set -e
g++ -o bld ../bld_main.cpp -g
cd ..
./build/bld
# gcc -o test_filesystem ../test/test_filesystem.c -Wno-write-strings
# ./test_filesystem
# gcc -o test_array ../test/test_array.cpp -fno-exceptions -fno-rtti -Wno-write-strings
# ./test_array
# gcc -o test_table ../test/test_table.cpp -fno-exceptions -fno-rtti -Wno-write-strings
# ./test_table
# gcc -o compile_as_c ../test/main.c
# ./compile_as_c
#-Wno-writable-strings
cd ..
gcc -o bld bld_main.cpp -g
./bld