diff options
author | Nico Huber <nico.h@gmx.de> | 2017-12-07 17:50:53 +0100 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2018-01-15 01:14:37 +0000 |
commit | afda56e1ad8719a11cd75d448a6a9d50974cc680 (patch) | |
tree | 45cc52340a0e2690060a59419bafa9481806ed10 /util/crossgcc/Makefile | |
parent | 72d1089fac4d68207c8360ab7b4663b41b16c44e (diff) | |
download | coreboot-afda56e1ad8719a11cd75d448a6a9d50974cc680.tar.xz |
buildgcc: Drop libelf/elfutils
Looks like we were unnecessarily dragging this around for some time now.
GCC's installation manual doesn't mention libelf as a requirement and a
build of crossgcc-i386 doesn't show any sign of it being used.
This also fixes a lot issues on non-GNU distributions that were intro-
duced by switching to the elfutils version of libelf.
Change-Id: Iff308a9bed9ae3842557d251b75d1faadfafe0da
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/22773
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Alex Thiessen <alex.thiessen.de+coreboot@gmail.com>
Reviewed-by: Martin Roth <martinroth@google.com>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'util/crossgcc/Makefile')
-rw-r--r-- | util/crossgcc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/crossgcc/Makefile b/util/crossgcc/Makefile index 24fe942d9b..4ad2c9458a 100644 --- a/util/crossgcc/Makefile +++ b/util/crossgcc/Makefile @@ -71,7 +71,7 @@ build-nds32le: clean_tempfiles: rm -rf build-* - rm -rf binutils-* gcc-* gmp-* libelf-* mpc-* mpfr-* + rm -rf binutils-* gcc-* gmp-* mpc-* mpfr-* rm -rf llvm-* clang-tools-* cfe-* compiler-rt-* rm -rf acpica-* rm -rf gdb-* |