3 Jan
2005
3 Jan
'05
07:48
cincaipatron@gmx.net wrote:
Hi,
how to get the assembly-instructions profile of a program in Linux (or Unix in general), similar with what gprof does, just that gprof is in higher-language (C/C++) level?
I'm not entirely sure what you mean, but g++/gcc -S might be what you want. It creates a file 'file.s' with the assembly instructions in it. -- JDL