diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2016-06-29 19:35:54 -0300 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2016-06-30 12:16:05 +0200 |
commit | 1f5d176ebf65bfd433100f9324db699abc91956c (patch) | |
tree | b9309a3ef1ea1e58b107e8aa640bde42076433f2 /package/binutils/2.26.1/0301-check-ldrunpath-length.patch | |
parent | 688059ebb23227fb13aad319df6e78686ea6e14a (diff) | |
download | buildroot-1f5d176ebf65bfd433100f9324db699abc91956c.tar.gz buildroot-1f5d176ebf65bfd433100f9324db699abc91956c.zip |
binutils: bump 2.26.x series to 2.26.1
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/binutils/2.26.1/0301-check-ldrunpath-length.patch')
-rw-r--r-- | package/binutils/2.26.1/0301-check-ldrunpath-length.patch | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/package/binutils/2.26.1/0301-check-ldrunpath-length.patch b/package/binutils/2.26.1/0301-check-ldrunpath-length.patch new file mode 100644 index 0000000000..3b4c204c7f --- /dev/null +++ b/package/binutils/2.26.1/0301-check-ldrunpath-length.patch @@ -0,0 +1,36 @@ +From ebe1cba46df52d7bf86def3d681271fd05fb453b Mon Sep 17 00:00:00 2001 +From: Romain Naour <romain.naour@gmail.com> +Date: Fri, 25 Dec 2015 11:41:47 +0100 +Subject: [PATCH] check-ldrunpath-length + +[Romain: rebase on top of 2.26] +Signed-off-by: Romain Naour <romain.naour@gmail.com> +--- + ld/emultempl/elf32.em | 4 ++++ + 1 file changed, 4 insertions(+) + +diff --git a/ld/emultempl/elf32.em b/ld/emultempl/elf32.em +index 0405d4f..efd3300 100644 +--- a/ld/emultempl/elf32.em ++++ b/ld/emultempl/elf32.em +@@ -1242,6 +1242,8 @@ fragment <<EOF + && command_line.rpath == NULL) + { + lib_path = (const char *) getenv ("LD_RUN_PATH"); ++ if ((lib_path) && (strlen (lib_path) == 0)) ++ lib_path = NULL; + if (gld${EMULATION_NAME}_search_needed (lib_path, &n, + force)) + break; +@@ -1523,6 +1525,8 @@ gld${EMULATION_NAME}_before_allocation (void) + rpath = command_line.rpath; + if (rpath == NULL) + rpath = (const char *) getenv ("LD_RUN_PATH"); ++ if ((rpath) && (strlen (rpath) == 0)) ++ rpath = NULL; + + for (abfd = link_info.input_bfds; abfd; abfd = abfd->link.next) + if (bfd_get_flavour (abfd) == bfd_target_elf_flavour) +-- +2.4.3 + |