pocketpy/build_g.sh
2024-06-02 21:33:03 +08:00

8 lines
176 B
Bash

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