diff options
author | Tony Theodore <tonyt@logyst.com> | 2016-08-05 05:01:25 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2016-08-05 05:01:25 (GMT) |
commit | c840358103edb0b6a3d81188e3d30048e6ad611e (patch) | |
tree | 9449d54e1063a74952c38b8f979c1f392ccd49fe /src | |
parent | a644700c8cd9246df80200f4c6444c108a8fceee (diff) | |
download | mxe-c840358103edb0b6a3d81188e3d30048e6ad611e.zip mxe-c840358103edb0b6a3d81188e3d30048e6ad611e.tar.gz mxe-c840358103edb0b6a3d81188e3d30048e6ad611e.tar.bz2 |
update gcc 4.9.3 --> 4.9.4
Tested on all four targets, list of changes:
https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=4.9.4
Diffstat (limited to 'src')
-rw-r--r-- | src/cloog.mk | 1 | ||||
-rw-r--r-- | src/gcc.mk | 4 | ||||
-rw-r--r-- | src/isl.mk | 2 |
3 files changed, 5 insertions, 2 deletions
diff --git a/src/cloog.mk b/src/cloog.mk index eb206c3..3de087b 100644 --- a/src/cloog.mk +++ b/src/cloog.mk @@ -15,6 +15,7 @@ $(PKG)_DEPS := gcc gmp isl $(PKG)_DEPS_$(BUILD) := gmp isl # stick to tested versions from gcc +# after gcc4 series, switch to normal updates and bundled isl define $(PKG)_UPDATE $(WGET) -q -O- 'ftp://gcc.gnu.org/pub/gcc/infrastructure/' | \ $(SED) -n 's,.*cloog-\([0-9][^>]*\)\.tar.*,\1,p' | \ @@ -3,8 +3,8 @@ PKG := gcc $(PKG)_IGNORE := 5% -$(PKG)_VERSION := 4.9.3 -$(PKG)_CHECKSUM := 2332b2a5a321b57508b9031354a8503af6fdfb868b8c1748d33028d100a8b67e +$(PKG)_VERSION := 4.9.4 +$(PKG)_CHECKSUM := 6c11d292cd01b294f9f84c9a59c230d80e9e4a47e5c6355f046bb36d4f358092 $(PKG)_SUBDIR := gcc-$($(PKG)_VERSION) $(PKG)_FILE := gcc-$($(PKG)_VERSION).tar.bz2 $(PKG)_URL := http://ftp.gnu.org/pub/gnu/gcc/gcc-$($(PKG)_VERSION)/$($(PKG)_FILE) @@ -15,6 +15,8 @@ $(PKG)_DEPS := gcc gmp $(PKG)_DEPS_$(BUILD) := gmp # stick to tested versions from gcc +# while in gcc4 series specific versions are required: +# http://web.archive.org/web/20141031011459/http://gcc.gnu.org/install/prerequisites.html define $(PKG)_UPDATE $(WGET) -q -O- 'ftp://gcc.gnu.org/pub/gcc/infrastructure/' | \ $(SED) -n 's,.*isl-\([0-9][^>]*\)\.tar.*,\1,p' | \ |