From: Michael Büsch Date: Sat, 5 Feb 2011 19:39:48 +0000 (+0000) Subject: cmake: Remove -O3 from release CFLAGS. Honor the OpenWRT -Os flag instead. X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=21e2dcd19995eaee6e95ab29e57233d164ecd2c5;hp=97140cecea8232c16ad45024894c9dff2a00b6a4;p=openwrt%2Fstaging%2Fyousong.git cmake: Remove -O3 from release CFLAGS. Honor the OpenWRT -Os flag instead. SVN-Revision: 25372 --- 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)" \