From 3d6898cc5c83b133a3a2d6c79e2ed8905d236a4d Mon Sep 17 00:00:00 2001 From: Matteo Martincigh Date: Tue, 15 Jan 2019 16:11:44 +0000 Subject: IVGCVSW-2455 Move the extra backend code to a new git repo * Refactored all the workload factories to use "virtual" properly * Removed the precompiled layer support from the optimizer * Disabled compiler optimization for debug build to ease debugging Change-Id: I6ab83abd78f422771359295e25b79bb9be613cfd --- cmake/GlobalConfig.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmake') diff --git a/cmake/GlobalConfig.cmake b/cmake/GlobalConfig.cmake index 9d7dab0b8d..969b234dab 100644 --- a/cmake/GlobalConfig.cmake +++ b/cmake/GlobalConfig.cmake @@ -67,7 +67,7 @@ endif() # Compiler flags for Debug builds if(COMPILER_IS_GNU_LIKE) - set(CMAKE_CXX_FLAGS_DEBUG "-g") + set(CMAKE_CXX_FLAGS_DEBUG "-g -O0") elseif(${CMAKE_CXX_COMPILER_ID} STREQUAL MSVC) set(CMAKE_CXX_FLAGS_DEBUG "/MDd /ZI /Od") # Disable SAFESEH which is necessary for Edit and Continue to work -- cgit v1.2.1