Chris Stankevitz wrote: > d) I'm compiling and linking with this command: g++ -Wall -O0 -march=native -fprofile-arcs -ftest-coverage *.cpp -lusrp -lpthread -lfftw3 -lfftw3f -pg > > Questions: > > 1) Why does b) produce no output? I think that gprof needs debug info from the compiler in order to show annotated source, so try with -g. Brian