How to minimize compilation time with mingw32 (be kind with me plz)
I use mingw in a command line to compile my C/C++ projects, before mingw I used code::blocks as an IDE. OK code::blocks is fine for a project with multiple files and when I modify a file it takes less time to build than when I use mingw e.g. gcc -Wall -I include_folder src_folder/*.c -o output
.
additionally, I’ve noticed that code::blocks creates .o files for each sources file but mingw doesn’t is there a way to compile automatically each file separately with it’s own .o file and then link them