diff options
author | Mark Brand <mabrand@mabrand.nl> | 2015-04-23 11:40:06 (GMT) |
---|---|---|
committer | Mark Brand <mabrand@mabrand.nl> | 2015-04-23 21:11:38 (GMT) |
commit | da82d07dbeca23087aa4351914cf4b890c1d3972 (patch) | |
tree | fc378ed49aa62af1ff4451492e028df43aa3d938 /src/cloog.mk | |
parent | 6947d3245f9c76d9124a4c4f3c164154a75f3f62 (diff) | |
download | mxe-da82d07dbeca23087aa4351914cf4b890c1d3972.zip mxe-da82d07dbeca23087aa4351914cf4b890c1d3972.tar.gz mxe-da82d07dbeca23087aa4351914cf4b890c1d3972.tar.bz2 |
gcc isl: update
cloog is no longer required to build gcc.
Diffstat (limited to 'src/cloog.mk')
-rw-r--r-- | src/cloog.mk | 34 |
1 files changed, 0 insertions, 34 deletions
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 = |