finding fuction names
From: <hidden>
Date: 2008-10-17 15:47:36
/*
Hi,
We have code in our product that produces stacktraces. Part of the
implementation of this code runs nm to find all of the entry points in
our libraries.
Using the 7.0 version of this compiler to compile the simple code below
xlC_r -c -q64 tt.cxx
nm -C tt.o
U __IBMCPlusPlusExceptionV1
0000000000000000 D test()
0000000000000000 T .test()
Using the 8.0 version of this compiler to compile the simple code below
xlC_r -c -q64 tt.cxx
nm -C tt.o
U __IBMCPlusPlusExceptionV2
0000000000000000 D test()
We grep the nm output for text symbols which are labeled with 'T'.
Not all function names are not labeled as text in objects compiled with
8.0.
Is there another way to find all of the fuction names in a library or
a compiler switch that will put all fuctions into the text segment ?
thanks,
Tom
*/
int test()
{
return 1;
}