From: Doug G. <dou...@gm...> - 2023-08-25 13:14:38
|
Christian, Reading and testing the example given here I can see the process. https://www.thegeekstuff.com/2012/08/gprof-tutorial/ >From your directions to Ebab in 2020 I surmise the command line would be: CXXFLAGS="-O3 -pg -j4" ./configure && make and execute: ./src/linuxsampler I presume -O3 are optimisations, -pg is from the current man page for gprof, and -j4 to compile using 4 cores. Is this correct? (I understand not to strip the executable.) Doug |