summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--index.html8
-rw-r--r--src/cloog.mk34
-rw-r--r--src/gcc-cloog.mk29
-rw-r--r--src/gcc.mk7
-rw-r--r--src/isl.mk4
5 files changed, 5 insertions, 77 deletions
diff --git a/index.html b/index.html
index 7582e3f..58a9420 100644
--- a/index.html
+++ b/index.html
@@ -1211,10 +1211,6 @@ local-pkg-list: $(LOCAL_PKG_LIST)</pre>
<td class="website"><a href="http://acoustid.org/chromaprint">Chromaprint</a></td>
</tr>
<tr>
- <td class="package">cloog</td>
- <td class="website"><a href="http://www.cloog.org/">CLooG Code Generator</a></td>
- </tr>
- <tr>
<td class="package">cmake</td>
<td class="website"><a href="http://www.cmake.org/">cmake</a></td>
</tr>
@@ -1346,10 +1342,6 @@ local-pkg-list: $(LOCAL_PKG_LIST)</pre>
<td class="website"><a href="http://gcc.gnu.org/">GCC</a></td>
</tr>
<tr>
- <td class="package">gcc-cloog</td>
- <td class="website"><a href="http://www.cloog.org/">CLooG for GCC</a></td>
- </tr>
- <tr>
<td class="package">gcc-gmp</td>
<td class="website"><a href="http://www.gmplib.org/">GMP for GCC</a></td>
</tr>
diff --git a/src/cloog.mk b/src/cloog.mk
deleted file mode 100644
index ab094a8..0000000
--- a/src/cloog.mk
+++ /dev/null
@@ -1,34 +0,0 @@
-# This file is part of MXE.
-# See index.html for further information.
-
-PKG := cloog
-$(PKG)_IGNORE :=
-$(PKG)_VERSION := 0.18.1
-$(PKG)_CHECKSUM := 2dc70313e8e2c6610b856d627bce9c9c3f848077
-$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
-$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
-$(PKG)_URL := http://www.bastoul.net/cloog/pages/download/$($(PKG)_FILE)
-$(PKG)_URL_2 := ftp://gcc.gnu.org/pub/gcc/infrastructure/$($(PKG)_FILE)
-$(PKG)_DEPS := gcc gmp isl
-
-# stick to tested versions from gcc
-define $(PKG)_UPDATE
- $(WGET) -q -O- 'ftp://gcc.gnu.org/pub/gcc/infrastructure/' | \
- $(SED) -n 's,.*cloog-\([0-9][^>]*\)\.tar.*,\1,p' | \
- $(SORT) -V |
- tail -1
-endef
-
-define $(PKG)_BUILD
- cd '$(1)' && ./configure \
- --host='$(TARGET)' \
- --enable-static \
- --disable-shared \
- --prefix='$(PREFIX)/$(TARGET)' \
- --with-gmp-prefix='$(PREFIX)/$(TARGET)' \
- --with-isl-prefix='$(PREFIX)/$(TARGET)'
- $(MAKE) -C '$(1)' -j '$(JOBS)'
- $(MAKE) -C '$(1)' -j '$(JOBS)' install
-endef
-
-$(PKG)_BUILD_SHARED =
diff --git a/src/gcc-cloog.mk b/src/gcc-cloog.mk
deleted file mode 100644
index 0f57991..0000000
--- a/src/gcc-cloog.mk
+++ /dev/null
@@ -1,29 +0,0 @@
-# This file is part of MXE.
-# See index.html for further information.
-
-PKG := gcc-cloog
-$(PKG)_IGNORE = $(cloog_IGNORE)
-$(PKG)_VERSION = $(cloog_VERSION)
-$(PKG)_CHECKSUM = $(cloog_CHECKSUM)
-$(PKG)_SUBDIR = $(cloog_SUBDIR)
-$(PKG)_FILE = $(cloog_FILE)
-$(PKG)_URL = $(cloog_URL)
-$(PKG)_URL_2 = $(cloog_URL_2)
-$(PKG)_DEPS := gcc-gmp gcc-isl
-
-define $(PKG)_UPDATE
- echo $(cloog_VERSION)
-endef
-
-define $(PKG)_BUILD
- mkdir '$(1).build'
- cd '$(1).build' && '$(1)/configure' \
- --prefix='$(PREFIX)' \
- --disable-shared \
- --with-gmp-prefix='$(PREFIX)' \
- --with-isl-prefix='$(PREFIX)'
- $(MAKE) -C '$(1).build' -j '$(JOBS)'
- $(MAKE) -C '$(1).build' -j 1 install
-endef
-
-$(PKG)_BUILD_$(BUILD) =
diff --git a/src/gcc.mk b/src/gcc.mk
index d4bcbea..81ad432 100644
--- a/src/gcc.mk
+++ b/src/gcc.mk
@@ -3,13 +3,13 @@
PKG := gcc
$(PKG)_IGNORE :=
-$(PKG)_VERSION := 4.9.2
-$(PKG)_CHECKSUM := 79dbcb09f44232822460d80b033c962c0237c6d8
+$(PKG)_VERSION := 5.1.0
+$(PKG)_CHECKSUM := b6c947b09adf780fe02065d0c48bfd7b4bdddfa3
$(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)
$(PKG)_URL_2 := ftp://ftp.mirrorservice.org/sites/sourceware.org/pub/gcc/releases/gcc-$($(PKG)_VERSION)/$($(PKG)_FILE)
-$(PKG)_DEPS := binutils gcc-cloog gcc-gmp gcc-isl gcc-mpc gcc-mpfr mingw-w64
+$(PKG)_DEPS := binutils gcc-gmp gcc-isl gcc-mpc gcc-mpfr mingw-w64
define $(PKG)_UPDATE
$(WGET) -q -O- 'http://ftp.gnu.org/gnu/gcc/?C=M;O=D' | \
@@ -38,7 +38,6 @@ define $(PKG)_CONFIGURE
--disable-win32-registry \
--enable-threads=win32 \
--disable-libgomp \
- --with-cloog='$(PREFIX)' \
--with-gmp='$(PREFIX)' \
--with-isl='$(PREFIX)' \
--with-mpc='$(PREFIX)' \
diff --git a/src/isl.mk b/src/isl.mk
index 8cf8eb3..70a928b 100644
--- a/src/isl.mk
+++ b/src/isl.mk
@@ -3,8 +3,8 @@
PKG := isl
$(PKG)_IGNORE :=
-$(PKG)_VERSION := 0.12.2
-$(PKG)_CHECKSUM := ca98a91e35fb3ded10d080342065919764d6f928
+$(PKG)_VERSION := 0.14
+$(PKG)_CHECKSUM := b09e25df265c97ed54002cd811d227a9a26c5f9c
$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.bz2
$(PKG)_URL := http://isl.gforge.inria.fr/$($(PKG)_FILE)