mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-19 19:10:17 +00:00
8 lines
168 B
Bash
8 lines
168 B
Bash
python prebuild.py
|
|
|
|
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
|