diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-09-09 21:35:42 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-09-09 21:35:42 +0000 |
commit | 8726a422cd551c41a5c4a1d88ebe10f5850fd00b (patch) | |
tree | e5e5ea5e884acb7c8a624b84c60cb70dfb9bedc4 /rules.mk | |
parent | 56dbeb781e963c12fc367aae068f989049cf1102 (diff) | |
download | upstream-8726a422cd551c41a5c4a1d88ebe10f5850fd00b.tar.gz upstream-8726a422cd551c41a5c4a1d88ebe10f5850fd00b.tar.bz2 upstream-8726a422cd551c41a5c4a1d88ebe10f5850fd00b.zip |
do not pass optimization flags in HOST_CPPFLAGS (#12153)
SVN-Revision: 33351
Diffstat (limited to 'rules.mk')
-rw-r--r-- | rules.mk | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -173,7 +173,8 @@ PKG_CONFIG:=$(STAGING_DIR_HOST)/bin/pkg-config export PKG_CONFIG HOSTCC:=gcc -HOST_CFLAGS:=-O2 -I$(STAGING_DIR_HOST)/include +HOST_CPPFLAGS:=-I$(STAGING_DIR_HOST)/include +HOST_CFLAGS:=-O2 $(HOST_CPPFLAGS) HOST_LDFLAGS:=-L$(STAGING_DIR_HOST)/lib TARGET_CC:=$(TARGET_CROSS)gcc |