I have the coreutils-8.19 source files with me. I want to do a source level analysis on the GNU sort utility using the perf record & report option to identify possible areas in the source sort.c where manual optimization can be done. Source level analysis requires you to use the -ggdb switch of gcc while compiling.
I am unable to compile and link the sort.c file to generate the executable because of dependency issues. What are the steps to carry out this procedure? I know the steps to get the sort executable in a normal fashion by running configure.sh and then "make" in the coreutils directory but how can I do this with the -ggdb switch. Please help me out. Or is there any other way to understand which function within the sort.c file is taking most of the time in executing a test case?
make CFLAGS=-g– chill Nov 17 '12 at 18:29CFLAGS=-ggdb -O0then – chill Nov 17 '12 at 18:44