aboutsummaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorMatteo Martincigh <matteo.martincigh@arm.com>2019-01-15 16:11:44 +0000
committerMatteo Martincigh <matteo.martincigh@arm.com>2019-01-23 12:06:53 +0000
commit3d6898cc5c83b133a3a2d6c79e2ed8905d236a4d (patch)
tree48f1899d3d952ca7ea5a2ae92a07468ef33bdd57 /cmake
parent8c76cc1a6b899462882265d114d9a2b5a88d474a (diff)
downloadarmnn-3d6898cc5c83b133a3a2d6c79e2ed8905d236a4d.tar.gz
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
Diffstat (limited to 'cmake')
-rw-r--r--cmake/GlobalConfig.cmake2
1 files changed, 1 insertions, 1 deletions
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