summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2013-11-28 20:25:20 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2013-12-19 15:55:32 +0100
commit02d3090a7b26eb24de7789cfa3e095d37d7bfa5c (patch)
tree9150d2340aa984db2c086a783e5d40fcb714d4fb
parent230c88ad6720b8cf6c3820eaf11f14498a94b557 (diff)
downloadOSELAS.Toolchain-02d3090a7b26eb24de7789cfa3e095d37d7bfa5c.tar.gz
OSELAS.Toolchain-02d3090a7b26eb24de7789cfa3e095d37d7bfa5c.tar.xz
host-isl: new package
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--Kconfig1
-rw-r--r--rules/host-isl.in2
-rw-r--r--rules/host-isl.make42
3 files changed, 45 insertions, 0 deletions
diff --git a/Kconfig b/Kconfig
index 9e26791..927fd2b 100644
--- a/Kconfig
+++ b/Kconfig
@@ -70,6 +70,7 @@ source "workspace/rules/cross-gdb.in"
source "workspace/rules/cross-toolchain.in"
source "workspace/rules/host-expat.in"
source "workspace/rules/host-gmp.in"
+source "workspace/rules/host-isl.in"
source "workspace/rules/host-mpc.in"
source "workspace/rules/host-mpfr.in"
source "workspace/rules/host-zlib.in"
diff --git a/rules/host-isl.in b/rules/host-isl.in
new file mode 100644
index 0000000..ceb2069
--- /dev/null
+++ b/rules/host-isl.in
@@ -0,0 +1,2 @@
+config HOST_ISL
+ bool
diff --git a/rules/host-isl.make b/rules/host-isl.make
new file mode 100644
index 0000000..46352d1
--- /dev/null
+++ b/rules/host-isl.make
@@ -0,0 +1,42 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2013 by Michael Olbrich <m.olbrich@pengutronix.de>
+#
+# See CREDITS for details about who has contributed to this project.
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+HOST_PACKAGES-$(PTXCONF_HOST_ISL) += host-isl
+
+#
+# Paths and names
+#
+HOST_ISL_VERSION := 0.12.1
+HOST_ISL_MD5 := 27d381085ff1b5733c3e8a9b6ad24a4d
+HOST_ISL := isl-$(HOST_ISL_VERSION)
+HOST_ISL_SUFFIX := tar.bz2
+HOST_ISL_URL := http://isl.gforge.inria.fr/$(HOST_ISL).$(HOST_ISL_SUFFIX)
+HOST_ISL_SOURCE := $(SRCDIR)/$(HOST_ISL).$(HOST_ISL_SUFFIX)
+HOST_ISL_DIR := $(HOST_BUILDDIR)/$(HOST_ISL)
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+HOST_ISL_DEVPKG := NO
+
+#
+# autoconf
+#
+HOST_ISL_CONF_TOOL := autoconf
+HOST_ISL_CONF_OPT := \
+ $(PTX_HOST_AUTOCONF) \
+ --disable-shared \
+ --enable-static
+
+# vim: syntax=make