From 8ce8d223a716e16cd3ffd3aaa04d4dee7d35d4dd Mon Sep 17 00:00:00 2001 From: Igor Pashev Date: Mon, 3 Dec 2012 19:01:30 +0400 Subject: GNU binutils 2.22+ --- binutils/patches/012_check_ldrunpath_length.patch | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 binutils/patches/012_check_ldrunpath_length.patch (limited to 'binutils/patches/012_check_ldrunpath_length.patch') diff --git a/binutils/patches/012_check_ldrunpath_length.patch b/binutils/patches/012_check_ldrunpath_length.patch new file mode 100644 index 0000000..5a35abc --- /dev/null +++ b/binutils/patches/012_check_ldrunpath_length.patch @@ -0,0 +1,23 @@ +Author: Chris Chimelis +Description: Only generate an RPATH entry if LD_RUN_PATH is not empty, for +cases where -rpath isn't specified. (#151024) +--- a/ld/emultempl/elf32.em ++++ b/ld/emultempl/elf32.em +@@ -1266,6 +1266,8 @@ + && 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; +@@ -1493,6 +1495,8 @@ + 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) -- cgit v1.2.3