slycelote / caide

Automates certain common tasks that you do during programming competitions
84 stars 18 forks source link

Use gcc in command line caide in windows #40

Closed Spidy104 closed 3 years ago

Spidy104 commented 3 years ago

Can we use gcc for windows in caide command line UI??

slycelote commented 3 years ago

Caide itself doesn't call any compiler. It can optionally use header files installed with a compiler for parsing the source code, if you use any compiler-specific extensions, but that's probably not what you need (the bundled MinGW headers should always be sufficient). If you want to compile from command line, use regular commands like g++ problemA.cpp problemA_test.cpp.