diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-03-24 10:06:27 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-03-24 10:06:27 +0000 |
commit | fc2bd072607fbe53ce14af3ac1867784f2c9a81d (patch) | |
tree | 36dca9aa48cb1bb4d96ec787e530d77a3c5be677 /toolchain/gcc/common.mk | |
parent | 2450985de9b4e47c77b57c1fd9469d43d1c43636 (diff) | |
download | upstream-fc2bd072607fbe53ce14af3ac1867784f2c9a81d.tar.gz upstream-fc2bd072607fbe53ce14af3ac1867784f2c9a81d.tar.bz2 upstream-fc2bd072607fbe53ce14af3ac1867784f2c9a81d.zip |
gcc: remove 4.4.7 (only used by avr32)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44957
Diffstat (limited to 'toolchain/gcc/common.mk')
-rw-r--r-- | toolchain/gcc/common.mk | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/toolchain/gcc/common.mk b/toolchain/gcc/common.mk index 925964ec23..67263cf34c 100644 --- a/toolchain/gcc/common.mk +++ b/toolchain/gcc/common.mk @@ -61,9 +61,6 @@ else PKG_SOURCE_URL:=@GNU/gcc/gcc-$(PKG_VERSION) PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 - ifeq ($(PKG_VERSION),4.4.7) - PKG_MD5SUM:=295709feb4441b04e87dea3f1bab4281 - endif ifeq ($(PKG_VERSION),4.6.3) PKG_MD5SUM:=773092fe5194353b02bb0110052a972e endif @@ -133,16 +130,12 @@ GCC_CONFIGURE:= \ --with-abi=$(subst ",,$(CONFIG_MIPS64_ABI))) \ --with-gmp=$(TOPDIR)/staging_dir/host \ --with-mpfr=$(TOPDIR)/staging_dir/host \ + --with-mpc=$(TOPDIR)/staging_dir/host \ --disable-decimal-float ifneq ($(CONFIG_mips)$(CONFIG_mipsel),) GCC_CONFIGURE += --with-mips-plt endif -ifeq ($(CONFIG_GCC_VERSION_4_4),) - GCC_CONFIGURE+= \ - --with-mpc=$(TOPDIR)/staging_dir/host -endif - ifneq ($(CONFIG_SSP_SUPPORT),) GCC_CONFIGURE+= \ --enable-libssp |