From fd9f8f85db22d92a5f3925fa9eaa0c19e00bff53 Mon Sep 17 00:00:00 2001 From: Michael Olbrich Date: Thu, 28 Nov 2013 20:25:45 +0100 Subject: host-cloog: new package Signed-off-by: Michael Olbrich --- Kconfig | 1 + rules/host-cloog.in | 3 +++ rules/host-cloog.make | 45 +++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 49 insertions(+) create mode 100644 rules/host-cloog.in create mode 100644 rules/host-cloog.make 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 +# +# 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 -- cgit v1.2.3