Removed explicit -g flag setting 25/213725/1
authoradam.b <adam.b@samsung.com>
Tue, 10 Sep 2019 13:31:34 +0000 (14:31 +0100)
committeradam.b <adam.b@samsung.com>
Tue, 10 Sep 2019 13:31:34 +0000 (14:31 +0100)
Setting -g flag has been removed. This should be set by the CMAKE_BUILD_TYPE (Debug/Release).

Change-Id: I5dc0061a03f98132264cf65103c1ca11979bd2e0

build/tizen/CMakeLists.txt

index 5c2673b..b395e8d 100644 (file)
@@ -92,8 +92,7 @@ SET( CORE_PKG_CFG_FILE dali-core.pc )
 CONFIGURE_FILE( ${CORE_PKG_CFG_FILE}.in ${CORE_PKG_CFG_FILE} @ONLY )
 
 # Set up compiler flags and warnings
-#ADD_COMPILE_OPTIONS( -std=c++11 -ggdb )
-ADD_COMPILE_OPTIONS( -std=c++11 -gdwarf-4 )
+ADD_COMPILE_OPTIONS( -std=c++11 )
 ADD_COMPILE_OPTIONS( -Wnon-virtual-dtor -Woverloaded-virtual -Wold-style-cast )
 
 # TODO: Clang is a lot more strict with warnings, we should address