diff options
author | Alan Modra <amodra@gmail.com> | 2009-10-23 01:21:12 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2009-10-23 01:21:12 +0000 |
commit | 07f1e47a64cf333e0484c235be7a91f7d62732e2 (patch) | |
tree | 610ab9718f78f1de26d7b43357f3828f49de85bb /ld | |
parent | f282425ecda29faaa48f6ca88a4d457239d5fbb0 (diff) | |
download | ppe42-binutils-07f1e47a64cf333e0484c235be7a91f7d62732e2.tar.gz ppe42-binutils-07f1e47a64cf333e0484c235be7a91f7d62732e2.zip |
PR ld/10489
* emultempl/elf32.em (gld${EMULATION_NAME}_search_needed): Handle
drive specifiers for DOS based filesystems in rpath-link strings.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 6 | ||||
-rw-r--r-- | ld/emultempl/elf32.em | 12 |
2 files changed, 18 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 3e11bcdb50..6d26e9c757 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,9 @@ +2009-10-23 Ryan Mansfield <rmansfield@qnx.com> + + PR ld/10489 + * emultempl/elf32.em (gld${EMULATION_NAME}_search_needed): Handle + drive specifiers for DOS based filesystems in rpath-link strings. + 2009-10-19 Nick Clifton <nickc@redhat.com> * Makefile.am: Remove spurious sanitization marker. diff --git a/ld/emultempl/elf32.em b/ld/emultempl/elf32.em index f7b70acf5d..6df6d0f7b5 100644 --- a/ld/emultempl/elf32.em +++ b/ld/emultempl/elf32.em @@ -58,6 +58,7 @@ fragment <<EOF #include <ldgram.h> #include "elf/common.h" #include "elf-bfd.h" +#include "filenames.h" /* Declare functions used by various EXTRA_EM_FILEs. */ static void gld${EMULATION_NAME}_before_parse (void); @@ -472,6 +473,17 @@ gld${EMULATION_NAME}_search_needed (const char *path, if (s == NULL) s = path + strlen (path); +#if HAVE_DOS_BASED_FILE_SYSTEM + /* Assume a match on the second char is part of drive specifier. */ + else if (config.rpath_separator == ':' + && s == path + 1 + && ISALPHA (*path)) + { + s = strchr (s + 1, config.rpath_separator); + if (s == NULL) + s = path + strlen (path); + } +#endif filename = (char *) xmalloc (s - path + len + 2); if (s == path) sset = filename; |