diff options
author | Michael Büsch <mb@bu3sch.de> | 2011-02-05 19:39:48 +0000 |
---|---|---|
committer | Michael Büsch <mb@bu3sch.de> | 2011-02-05 19:39:48 +0000 |
commit | 22fdb17e8403e17f24c4d842f2fe35679bfc7e55 (patch) | |
tree | 36786f26dbc47ef4312f00240c26c837a822c5e1 /include | |
parent | c58db036fb7fecc92543dcc576b7aee236ed5ad7 (diff) | |
download | upstream-22fdb17e8403e17f24c4d842f2fe35679bfc7e55.tar.gz upstream-22fdb17e8403e17f24c4d842f2fe35679bfc7e55.tar.bz2 upstream-22fdb17e8403e17f24c4d842f2fe35679bfc7e55.zip |
cmake: Remove -O3 from release CFLAGS. Honor the OpenWRT -Os flag instead.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25372 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include')
-rw-r--r-- | include/cmake.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/cmake.mk b/include/cmake.mk index bdd94c1a31..590d3f57c3 100644 --- a/include/cmake.mk +++ b/include/cmake.mk @@ -9,6 +9,8 @@ define Build/Configure/Default -DCMAKE_SYSTEM_VERSION=1 \ -DCMAKE_SYSTEM_PROCESSOR=$(ARCH) \ -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_C_FLAGS_RELEASE="-DNDEBUG" \ + -DCMAKE_CXX_FLAGS_RELEASE="-DNDEBUG" \ -DCMAKE_C_COMPILER=$(TOOLCHAIN_DIR)/bin/$(TARGET_CC) \ -DCMAKE_CXX_COMPILER=$(TOOLCHAIN_DIR)/bin/$(TARGET_CXX) \ -DCMAKE_EXE_LINKER_FLAGS="$(TARGET_LDFLAGS)" \ |