summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2013-11-28 20:25:45 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2013-12-19 15:55:32 +0100
commitfd9f8f85db22d92a5f3925fa9eaa0c19e00bff53 (patch)
tree7446bb94ea9f4dacc66eff90e9f87ac9be084b8b
parent02d3090a7b26eb24de7789cfa3e095d37d7bfa5c (diff)
downloadOSELAS.Toolchain-fd9f8f85db22d92a5f3925fa9eaa0c19e00bff53.tar.gz
OSELAS.Toolchain-fd9f8f85db22d92a5f3925fa9eaa0c19e00bff53.tar.xz
host-cloog: new package
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--Kconfig1
-rw-r--r--rules/host-cloog.in3
-rw-r--r--rules/host-cloog.make45
3 files changed, 49 insertions, 0 deletions
diff --git a/Kconfig b/Kconfig
index 927fd2b..68991f2 100644
--- a/Kconfig
+++ b/Kconfig
@@ -68,6 +68,7 @@ source "workspace/rules/kernel-headers.in"
source "workspace/rules/cross-gcc.in"
source "workspace/rules/cross-gdb.in"
source "workspace/rules/cross-toolchain.in"
+source "workspace/rules/host-cloog.in"
source "workspace/rules/host-expat.in"
source "workspace/rules/host-gmp.in"
source "workspace/rules/host-isl.in"
diff --git a/rules/host-cloog.in b/rules/host-cloog.in
new file mode 100644
index 0000000..f7b03f6
--- /dev/null
+++ b/rules/host-cloog.in
@@ -0,0 +1,3 @@
+config HOST_CLOOG
+ select HOST_ISL
+ bool
diff --git a/rules/host-cloog.make b/rules/host-cloog.make
new file mode 100644
index 0000000..9087c36
--- /dev/null
+++ b/rules/host-cloog.make
@@ -0,0 +1,45 @@
+# -*-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_CLOOG) += host-cloog
+
+#
+# Paths and names
+#
+HOST_CLOOG_VERSION := 0.18.1
+HOST_CLOOG_MD5 := e34fca0540d840e5d0f6427e98c92252
+HOST_CLOOG := cloog-$(HOST_CLOOG_VERSION)
+HOST_CLOOG_SUFFIX := tar.gz
+HOST_CLOOG_URL := http://www.bastoul.net/cloog/pages/download/$(HOST_CLOOG).$(HOST_CLOOG_SUFFIX)
+HOST_CLOOG_SOURCE := $(SRCDIR)/$(HOST_CLOOG).$(HOST_CLOOG_SUFFIX)
+HOST_CLOOG_DIR := $(HOST_BUILDDIR)/$(HOST_CLOOG)
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+HOST_CLOOG_DEVPKG := NO
+
+#
+# autoconf
+#
+HOST_CLOOG_CONF_TOOL := autoconf
+HOST_CLOOG_CONF_OPT := \
+ $(PTX_HOST_AUTOCONF) \
+ --disable-shared \
+ --enable-static \
+ --with-isl=system \
+ --with-gmp=system \
+ --without-osl
+
+# vim: syntax=make