diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-10-19 05:28:29 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-10-19 05:28:29 +0000 |
commit | 60fb2fd748e4b9c3032c7806985a1064561aa966 (patch) | |
tree | e0a5df642ac8b4752ea093039028f673a6bffcd5 /toolchain/gcc | |
parent | 62aa1dc0578abd5a2d1aab8753f2f11df081d5e5 (diff) | |
download | upstream-60fb2fd748e4b9c3032c7806985a1064561aa966.tar.gz upstream-60fb2fd748e4b9c3032c7806985a1064561aa966.tar.bz2 upstream-60fb2fd748e4b9c3032c7806985a1064561aa966.zip |
gcc: prevent the libgcc configure script from enabling support for the fixed point math extension, as it can bloat up libgcc size to 1.4M on mips
SVN-Revision: 18066
Diffstat (limited to 'toolchain/gcc')
-rw-r--r-- | toolchain/gcc/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/toolchain/gcc/Makefile b/toolchain/gcc/Makefile index fdcee3f217..4aec5714bf 100644 --- a/toolchain/gcc/Makefile +++ b/toolchain/gcc/Makefile @@ -69,6 +69,8 @@ HOST_BUILD_DIR2:=$(HOST_BUILD_DIR)-final SEP:=, TARGET_LANGUAGES:="c$(if $(CONFIG_INSTALL_LIBSTDCPP),$(SEP)c++)$(if $(CONFIG_INSTALL_LIBGCJ),$(SEP)java)" +export libgcc_cv_fixed_point=no + GCC_CONFIGURE:= \ SHELL="$(BASH)" \ $(HOST_BUILD_DIR)/configure \ |