summaryrefslogtreecommitdiffstats
path: root/rules
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2020-08-24 11:22:05 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2020-08-27 11:45:22 +0200
commit4f135ad5d1cfac9b4e44e11d3f268e4c5d28a77c (patch)
treec0c736a5550aa4d567416c57bde2864a15d556f4 /rules
parentd57971742eb69562ac0766efd74d0b0544e89793 (diff)
downloadOSELAS.Toolchain-4f135ad5d1cfac9b4e44e11d3f268e4c5d28a77c.tar.gz
OSELAS.Toolchain-4f135ad5d1cfac9b4e44e11d3f268e4c5d28a77c.tar.xz
host-libelf: remove unnecessary host library
Current gcc versions don't need libelf any more. Just drop the dependency. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules')
-rw-r--r--rules/cross-gcc.in2
-rw-r--r--rules/host-libelf.in6
-rw-r--r--rules/host-libelf.make61
3 files changed, 0 insertions, 69 deletions
diff --git a/rules/cross-gcc.in b/rules/cross-gcc.in
index 4f40bd4..0f5debd 100644
--- a/rules/cross-gcc.in
+++ b/rules/cross-gcc.in
@@ -9,7 +9,6 @@ menuconfig CROSS_GCC
select HOST_SYSTEM_MPFR if CROSS_GCC_43
select HOST_SYSTEM_MPC if CROSS_GCC_43
select HOST_ZLIB if CROSS_GCC_43
- select HOST_LIBELF if CROSS_GCC_45
select HOST_SYSTEM_ISL if CROSS_GCC_48
select CROSS_ECJ if CROSS_GCC_LANG_JAVA
@@ -250,6 +249,5 @@ config CROSS_GCC_FIRST
select HOST_SYSTEM_MPFR if CROSS_GCC_43
select HOST_SYSTEM_MPC if CROSS_GCC_43
select HOST_ZLIB if CROSS_GCC_43
- select HOST_LIBELF if CROSS_GCC_45
select HOST_SYSTEM_ISL if CROSS_GCC_48
diff --git a/rules/host-libelf.in b/rules/host-libelf.in
deleted file mode 100644
index eab1ae9..0000000
--- a/rules/host-libelf.in
+++ /dev/null
@@ -1,6 +0,0 @@
-## SECTION=hosttools_noprompt
-
-config HOST_LIBELF
- bool
- select HOST_ZLIB
- select HOST_XZ
diff --git a/rules/host-libelf.make b/rules/host-libelf.make
deleted file mode 100644
index 414c29a..0000000
--- a/rules/host-libelf.make
+++ /dev/null
@@ -1,61 +0,0 @@
-# -*-makefile-*-
-#
-# Copyright (C) 2011 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_LIBELF) += host-libelf
-
-#
-# Paths and names
-#
-HOST_LIBELF_VERSION := 0.179
-HOST_LIBELF_MD5 := 8ee56b371b5a7ea081284c44e5164600
-HOST_LIBELF := elfutils-$(HOST_LIBELF_VERSION)
-HOST_LIBELF_SUFFIX := tar.bz2
-HOST_LIBELF_URL := https://sourceware.org/elfutils/ftp/$(HOST_LIBELF_VERSION)/$(HOST_LIBELF).$(HOST_LIBELF_SUFFIX)
-HOST_LIBELF_SOURCE := $(SRCDIR)/$(HOST_LIBELF).$(HOST_LIBELF_SUFFIX)
-HOST_LIBELF_DIR := $(HOST_BUILDDIR)/$(HOST_LIBELF)
-HOST_LIBELF_LICENSE := (LGPL-3.0-or-later OR GPL-2.0-or-later) AND GPL-3.0-or-later
-
-# ----------------------------------------------------------------------------
-# Prepare
-# ----------------------------------------------------------------------------
-
-#
-# autoconf
-#
-HOST_LIBELF_AUTOCONF := \
- $(PTX_HOST_AUTOCONF) \
- --enable-deterministic-archives \
- --disable-thread-safety \
- --disable-debugpred \
- --disable-gprof \
- --disable-gcov \
- --disable-sanitize-undefined \
- --disable-valgrind \
- --disable-valgrind-annotations \
- --disable-install-elfh \
- --disable-tests-rpath \
- --enable-textrelcheck \
- --enable-symbol-versioning \
- --disable-nls \
- --disable-debuginfod \
- --with-zlib \
- --without-bzlib \
- --with-lzma \
- --without-biarch
-
-ifdef PTXDIST_ICECC
-LIBELF_CFLAGS := -C
-endif
-
-HOST_LIBELF_MAKE_OPT := -C libelf libelf.a
-HOST_LIBELF_INSTALL_OPT := -C libelf install-data-am install-exec-am
-
-# vim: syntax=make