pocketpy/build_g.sh
2024-06-01 18:18:38 +08:00

6 lines
148 B
Bash

SRC=$(find src/ -name "*.cpp")
FLAGS="-std=c++17 -Og -stdlib=libc++ -Iinclude -frtti -Wfatal-errors -g"
clang++ $FLAGS -o main src2/main.cpp $SRC