summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2020-08-24 10:54:12 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2020-08-27 11:45:22 +0200
commit64e191dd29fad9daa95b786c8a8f39ff28fe883f (patch)
tree2929377ea2a8ffe7421b1223a929c72fd1336b4e
parentc0a62dbf7daef51087920104295585fe15340dc3 (diff)
downloadOSELAS.Toolchain-64e191dd29fad9daa95b786c8a8f39ff28fe883f.tar.gz
OSELAS.Toolchain-64e191dd29fad9daa95b786c8a8f39ff28fe883f.tar.xz
host-cloog: remove obsolte package
It's no longer used by current gcc versions. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--rules/cross-gcc.in2
-rw-r--r--rules/cross-gcc.make1
-rw-r--r--rules/host-cloog.in5
-rw-r--r--rules/host-cloog.make43
4 files changed, 0 insertions, 51 deletions
diff --git a/rules/cross-gcc.in b/rules/cross-gcc.in
index 8681993..c90989a 100644
--- a/rules/cross-gcc.in
+++ b/rules/cross-gcc.in
@@ -10,7 +10,6 @@ menuconfig CROSS_GCC
select HOST_MPC if CROSS_GCC_43
select HOST_ZLIB if CROSS_GCC_43
select HOST_LIBELF if CROSS_GCC_45
- select HOST_CLOOG if CROSS_GCC_48 && ! CROSS_GCC_50
select HOST_ISL if CROSS_GCC_48
select CROSS_ECJ if CROSS_GCC_LANG_JAVA
@@ -252,6 +251,5 @@ config CROSS_GCC_FIRST
select HOST_MPC if CROSS_GCC_43
select HOST_ZLIB if CROSS_GCC_43
select HOST_LIBELF if CROSS_GCC_45
- select HOST_CLOOG if CROSS_GCC_48 && ! CROSS_GCC_50
select HOST_ISL if CROSS_GCC_48
diff --git a/rules/cross-gcc.make b/rules/cross-gcc.make
index 26bb3e7..523e485 100644
--- a/rules/cross-gcc.make
+++ b/rules/cross-gcc.make
@@ -89,7 +89,6 @@ CROSS_GCC_AUTOCONF_COMMON := \
$(call ptx/ifdef,PTXCONF_HOST_GMP,--with-gmp) \
$(call ptx/ifdef,PTXCONF_HOST_MPFR,--with-mpfr) \
$(call ptx/ifdef,PTXCONF_HOST_MPC,--with-mpc) \
- $(call ptx/ifdef,PTXCONF_HOST_CLOOG,--with-cloog) \
$(call ptx/ifdef,PTXCONF_HOST_ISL,--with-isl)
ifndef PTXCONF_TOOLCHAIN_DEBUG
diff --git a/rules/host-cloog.in b/rules/host-cloog.in
deleted file mode 100644
index 22993cc..0000000
--- a/rules/host-cloog.in
+++ /dev/null
@@ -1,5 +0,0 @@
-## SECTION=hosttools_noprompt
-
-config HOST_CLOOG
- select HOST_ISL
- bool
diff --git a/rules/host-cloog.make b/rules/host-cloog.make
deleted file mode 100644
index 0aefde4..0000000
--- a/rules/host-cloog.make
+++ /dev/null
@@ -1,43 +0,0 @@
-# -*-makefile-*-
-#
-# Copyright (C) 2013 by Michael Olbrich <m.olbrich@pengutronix.de>
-#
-# 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.4
-HOST_CLOOG_MD5 := e531f725244856c92c9bba009ff44faf
-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)
-HOST_CLOOG_LICENSE := LGPL-2.1-or-later
-
-# ----------------------------------------------------------------------------
-# Prepare
-# ----------------------------------------------------------------------------
-
-#
-# autoconf
-#
-HOST_CLOOG_CONF_TOOL := autoconf
-HOST_CLOOG_CONF_OPT := \
- $(PTX_HOST_AUTOCONF) \
- --disable-shared \
- --enable-static \
- --enable-portable-binary \
- --with-isl=system \
- --with-gmp=system \
- --without-osl
-
-# vim: syntax=make