diff options
author | Tony Theodore <tonyt@logyst.com> | 2013-10-19 07:12:53 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2013-10-19 07:13:49 (GMT) |
commit | aadc5cea1ea92b9df0c2961a4d31c6561047bba6 (patch) | |
tree | 7af47ccb77d70933b372acaa12c17fe6d525e088 /src/cloog.mk | |
parent | 2b82342590795068e41ff72ebbe4d53889475e82 (diff) | |
download | mxe-aadc5cea1ea92b9df0c2961a4d31c6561047bba6.zip mxe-aadc5cea1ea92b9df0c2961a4d31c6561047bba6.tar.gz mxe-aadc5cea1ea92b9df0c2961a4d31c6561047bba6.tar.bz2 |
add packages cloog isl and use for gcc optimisations
Diffstat (limited to 'src/cloog.mk')
-rw-r--r-- | src/cloog.mk | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/cloog.mk b/src/cloog.mk new file mode 100644 index 0000000..5efa132 --- /dev/null +++ b/src/cloog.mk @@ -0,0 +1,31 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := cloog +$(PKG)_IGNORE := +$(PKG)_VERSION := 0.18.0 +$(PKG)_CHECKSUM := 85f620a26aabf6a934c44ca40a9799af0952f863 +$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION) +$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz +$(PKG)_URL := 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 |