From f360a539178d9e201a7a2a76c133e5b897cbd340 Mon Sep 17 00:00:00 2001 From: "adam.b" Date: Tue, 10 Sep 2019 14:31:34 +0100 Subject: [PATCH] Removed explicit -g flag setting Setting -g flag has been removed. This should be set by the CMAKE_BUILD_TYPE (Debug/Release). Change-Id: I5dc0061a03f98132264cf65103c1ca11979bd2e0 --- build/tizen/CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build/tizen/CMakeLists.txt b/build/tizen/CMakeLists.txt index 5c2673b..b395e8d 100644 --- a/build/tizen/CMakeLists.txt +++ b/build/tizen/CMakeLists.txt @@ -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 -- 2.7.4