pocketpy/build_g.sh
blueloveTH 3787a1da1d init
2024-06-10 22:38:49 +08:00

11 lines
251 B
Bash

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