I need to figure out which translation units need to be restructured to improve compile times, How do I get hold of the compilation time, using cmake, for my translation units ?
|
feedback
|
|
I would expect to replace the compiler (and/or linker) with 'time original-cmd'. Using plain 'make', I'd say:
The 'time' program would run the command and report on the time it took. The equivalent mechanism would work with 'cmake'. If you need to capture the command as well as the time, then you can write your own command analogous to time (a shell script would do) that records the data you want in the way you want. | |||
feedback
|
cmakeonly generate conf files for native build systems (make, nmake, etc.). So cmake isn't actually involved into compile/link process. Perhaps you should look for such options into your native build system. – beduin May 11 '11 at 11:06Makefilesto invoketimefor eachgcccommand. – beduin May 11 '11 at 13:18