diff options
author | Florian Fainelli <florian@openwrt.org> | 2008-07-30 12:54:28 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2008-07-30 12:54:28 +0000 |
commit | 0ae9727f8bea6adaacb2f13c6fe026ba251461e0 (patch) | |
tree | 86b3d897ebc6f30ea8e51f338a0581fc735ab1c6 /toolchain/gcc/Makefile | |
parent | ff298d605db595e1cdb3fde1b9befd006eaf2199 (diff) | |
download | master-187ad058-0ae9727f8bea6adaacb2f13c6fe026ba251461e0.tar.gz master-187ad058-0ae9727f8bea6adaacb2f13c6fe026ba251461e0.tar.bz2 master-187ad058-0ae9727f8bea6adaacb2f13c6fe026ba251461e0.zip |
Disable smash stacking support by default, but allow to enable it as an experimental feature
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12010 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain/gcc/Makefile')
-rw-r--r-- | toolchain/gcc/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/toolchain/gcc/Makefile b/toolchain/gcc/Makefile index 31697989c9..700463cb78 100644 --- a/toolchain/gcc/Makefile +++ b/toolchain/gcc/Makefile @@ -40,6 +40,12 @@ BUILD_DIR2:=$(BUILD_DIR_HOST)/gcc-$(PKG_VERSION)-final SEP:=, TARGET_LANGUAGES:="c$(if $(CONFIG_INSTALL_LIBSTDCPP),$(SEP)c++)$(if $(CONFIG_INSTALL_LIBGCJ),$(SEP)java)" +ifeq ($(CONFIG_SSP_SUPPORT),y) + SSP:=--enable-ssp +else + SSP:=--disable-ssp +endif + EXTRA_TARGET=$(if $(CONFIG_EXTRA_TARGET_ARCH),--enable-biarch --enable-targets=$(call qstrip,$(CONFIG_EXTRA_TARGET_ARCH_NAME))-linux-uclibc) define Stage1/Configure @@ -62,6 +68,7 @@ define Stage1/Configure --disable-nls \ --disable-libmudflap \ --disable-multilib \ + $(SSP) \ $(EXTRA_TARGET) \ $(SOFT_FLOAT_CONFIG_OPTION) \ $(call qstrip,$(CONFIG_EXTRA_GCC_CONFIG_OPTIONS)) \ @@ -96,6 +103,7 @@ define Stage2/Configure --disable-nls \ --disable-libmudflap \ --disable-multilib \ + $(SSP) \ $(EXTRA_TARGET) \ $(SOFT_FLOAT_CONFIG_OPTION) \ $(call qstrip,$(CONFIG_EXTRA_GCC_CONFIG_OPTIONS)) \ |