crossgcc: Build libelf from elfutils 0.170

> Could you make in a separate, independent change a update from the
> completely outdated LIBELF (from mr511.de/software/libelf ) to recent
> libelf? Those highly outdated libelf from this unmaintained mr511.de
> webpage should not be used any more since years. There are also a ton
> of security issues like for example: CVE-2017-7607, CVE-2017-7608, ...
> CVE-2017-7613. Recent version of this software is included in the
> elfutils that are available here: https://sourceware.org/elfutils/ ->
> download link:
> https://sourceware.org/elfutils/ftp/0.170/elfutils-0.170.tar.bz2

Remove the obsolete patch, which doesn’t apply anymore, and only
affected the build system, which is different now.

Increment the buildgcc version string as a tool version is changed.

TEST=Running `make crossgcc-i386` succeeds.
Change-Id: Iadd320a18c5d9fe2a82a347e39f01d8b7f8806c2
Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de>
Reviewed-on: https://review.coreboot.org/21435
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:
Paul Menzel
2017-09-07 08:27:37 +02:00
committed by Martin Roth
parent 1d6002a27c
commit 4cde9a752a
4 changed files with 6 additions and 34 deletions

View File

@@ -1,28 +0,0 @@
libelf-0.8.13: Fix libelf 64bit detection
Taken from crosstool-ng and and re-applied to 0.8.13
diff -urN libelf-0.8.13.orig/configure libelf-0.8.13/configure
--- libelf-0.8.13.orig/configure 2008-05-23 01:18:03.000000000 -0700
+++ libelf-0.8.13/configure 2017-07-27 12:41:43.417835628 -0700
@@ -1595,7 +1595,7 @@
echo $ac_n "(cached) $ac_c" 1>&6
else
if test "$cross_compiling" = yes; then
- ac_cv_sizeof_long_long=0
+ ac_cv_sizeof_long_long=8
else
cat > conftest.$ac_ext <<EOF
#line 1602 "configure"
diff -urN libelf-0.8.13.orig/configure.in libelf-0.8.13/configure.in
--- libelf-0.8.13.orig/configure.in 2008-05-23 01:17:56.000000000 -0700
+++ libelf-0.8.13/configure.in 2017-07-27 12:41:43.421835676 -0700
@@ -90,7 +90,7 @@
AC_CHECK_SIZEOF(short,2)
AC_CHECK_SIZEOF(int,4)
AC_CHECK_SIZEOF(long,4)
-AC_CHECK_SIZEOF(long long,0)
+AC_CHECK_SIZEOF(long long,8)
# Windows port
AC_CHECK_SIZEOF(__int64, 0)