I compile with this command:
g++.exe -g a.cpp -o a.exe
And the compiler does full a compilation even if there are no changes in a.cpp from a previous compilation. How to skip compilation, if there are no changes in the source file?
I compile with this command:
g++.exe -g a.cpp -o a.exe
And the compiler does full a compilation even if there are no changes in a.cpp from a previous compilation. How to skip compilation, if there are no changes in the source file?