|
what command should i use for cpp file to compile them |
Answered by
Eamon2009
May 22, 2026
Replies: 1 comment
|
The standard compile command use can use g++ -std=c++17 -O2 -I. -Iinclude -o quadtrix.exe main.cppif you want maximum CPU optimization on GCC/Clang, use g++ -std=c++17 -O3 -march=native -I. -Iinclude -o quadtrix.exe main.cpp |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The standard compile command use can use
if you want maximum CPU optimization on GCC/Clang, use