1 From 30628870e583375f8927c04398c7219c6e9f703c Mon Sep 17 00:00:00 2001
2 From: Romain Naour <romain.naour@gmail.com>
3 Date: Fri, 25 Dec 2015 11:42:48 +0100
4 Subject: [PATCH] add sysroot fix from bug #3049
6 Always try to prepend the sysroot prefix to absolute filenames first.
8 http://bugs.gentoo.org/275666
9 http://sourceware.org/bugzilla/show_bug.cgi?id=10340
11 Signed-off-by: Sven Rebhan <odinshorse@googlemail.com>
12 [Romain: rebase on top of 2.26]
13 Signed-off-by: Romain Naour <romain.naour@gmail.com>
15 ld/ldfile.c | 11 +++++++++--
16 1 file changed, 9 insertions(+), 2 deletions(-)
18 diff --git a/ld/ldfile.c b/ld/ldfile.c
19 index 96f9ecc..1439309 100644
22 @@ -335,18 +335,25 @@ ldfile_open_file_search (const char *arch,
24 if (! entry->flags.maybe_archive)
26 - if (entry->flags.sysrooted && IS_ABSOLUTE_PATH (entry->filename))
27 + /* For absolute pathnames, try to always open the file in the
28 + sysroot first. If this fails, try to open the file at the
30 + entry->flags.sysrooted = is_sysrooted_pathname (entry->filename);
31 + if (!entry->flags.sysrooted && IS_ABSOLUTE_PATH (entry->filename)
34 char *name = concat (ld_sysroot, entry->filename,
36 if (ldfile_try_open_bfd (name, entry))
38 entry->filename = name;
39 + entry->flags.sysrooted = TRUE;
44 - else if (ldfile_try_open_bfd (entry->filename, entry))
46 + if (ldfile_try_open_bfd (entry->filename, entry))
49 if (IS_ABSOLUTE_PATH (entry->filename))