-
Hi .. I would like to do a basic profiling of decoder code in linux. Normally we use gprof and while compiling we add |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
As stated in the project description: mkdir build
cd build
cmake .. <build options>
cmake --build . # or just `make -j` Just add Make sure you are using a clean (empty) directory for a custom CMake build. |
Beta Was this translation helpful? Give feedback.
As stated in the project description:
Just add
-DCMAKE_C_FLAGS=-pg -DCMAKE_CXX_FLAGS=-pg
to your cmake call.Make sure you are using a clean (empty) directory for a custom CMake build.