Note, my question is not: how do I tell my compiler to compile with profiling on.
I want to profile my compiles process. For each file, I\'d like to know ho
Try these command line options with g++
-v -ftime-report
That should give you more information on the compiling process. The culprit is usually templates though.