-pg flags belongs to profiling more than debug
authorRomain Forlot <romain.forlot@iot.bzh>
Tue, 18 Jul 2017 16:27:33 +0000 (18:27 +0200)
committerRomain Forlot <romain.forlot@iot.bzh>
Tue, 18 Jul 2017 16:27:33 +0000 (18:27 +0200)
Change-Id: Iab550cc5653c7ef1094a8960aca9ca64f1aee1a4
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
cmake/cmake.d/04-build_options.cmake

index c48e8cd..d1b25f4 100644 (file)
@@ -77,12 +77,12 @@ add_compile_options(-fPIC)
 ##################################################
 add_compile_options($<$<OR:$<CONFIG:DEBUG>,$<CONFIG:PROFILING>,$<CONFIG:CCOV>>:-g>)
 
-add_compile_options($<$<CONFIG:DEBUG>:-pg>)
 add_compile_options($<$<CONFIG:DEBUG>:-ggdb>)
 add_compile_options($<$<CONFIG:CCOV>:--coverage>)
 
 add_compile_options($<$<CONFIG:DEBUG>:-Og>)
 add_compile_options($<$<CONFIG:PROFILING>:-O0>)
+add_compile_options($<$<CONFIG:PROFILING>:-pg>)
 add_compile_options($<$<OR:$<CONFIG:CCOV>,$<CONFIG:PROFILING>>:-O2>)
 
 add_compile_options($<$<OR:$<CONFIG:DEBUG>,$<CONFIG:PROFILING>>:-Wp,-U_FORTIFY_SOURCE>)