Reputation: 6783
I want to narrow down places where can be bottlenecks? Building of my project can take even half an hour. I know many tricks and things which in theory can be guilty, however profiler will be complete solution for all my question.
I am asking about profiler for C++ - GNU GCC - make - Linux - environment, however I am curious if any popular language has such thing.
Upvotes: 1
Views: 34
Reputation: 25543
With gcc you can use the -ftime-report
option to get the time taken by each compilation stage.
Upvotes: 1