diff options
author | Zakharov Vlad <Vladislav.Zakharov@synopsys.com> | 2016-12-19 15:11:57 +0300 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2016-12-19 13:40:57 +0100 |
commit | e4491b47b0940eab3e1404d2b5482aded7b1ce8c (patch) | |
tree | 82aaf6dda39203b3fd602dd2286ca817f61c29b3 /package/binutils/arc-2016.09-release/0301-check-ldrunpath-length.patch | |
parent | dbfca7963049cd2140bff00c6841360d74c20fea (diff) | |
download | buildroot-e4491b47b0940eab3e1404d2b5482aded7b1ce8c.tar.gz buildroot-e4491b47b0940eab3e1404d2b5482aded7b1ce8c.zip |
toolchain: Bump ARC tools to arc-2016.09 release
As described at:
4520524ba055706236db9f00dd79f1b2e2e87fde
this commit continues a series of updates of ARC tools.
This time we're updating tools to arc-2016.09 release version.
Signed-off-by: Vlad Zakharov <vzakhar@synopsys.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/binutils/arc-2016.09-release/0301-check-ldrunpath-length.patch')
-rw-r--r-- | package/binutils/arc-2016.09-release/0301-check-ldrunpath-length.patch | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/package/binutils/arc-2016.09-release/0301-check-ldrunpath-length.patch b/package/binutils/arc-2016.09-release/0301-check-ldrunpath-length.patch new file mode 100644 index 0000000000..3b4c204c7f --- /dev/null +++ b/package/binutils/arc-2016.09-release/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 + |