diff options
author | Alan Modra <amodra@gmail.com> | 2020-01-29 10:25:58 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2020-01-29 10:39:20 +1030 |
commit | ef8f08ca13f6c111cc549a3e13be5c5e2d95ca82 (patch) | |
tree | bd5e903baff326193a2e3f173f3a368a3e372bf7 /ld/ldelf.c | |
parent | e667c15c4895d419eb19068090c851110a0aeaaf (diff) | |
download | gdb-ef8f08ca13f6c111cc549a3e13be5c5e2d95ca82.zip gdb-ef8f08ca13f6c111cc549a3e13be5c5e2d95ca82.tar.gz gdb-ef8f08ca13f6c111cc549a3e13be5c5e2d95ca82.tar.bz2 |
PR25477, ld 2.34 tries to load ${prefix}/etc/ld.so.conf
PR 25477
* ldelf.c (ldelf_check_ld_so_conf): Add prefix parameter and
correct concat.
(ldelf_after_open): Add prefix parameter.
* ldelf.h (ldelf_after_open): Update prototype.
* emultempl/elf.em (gld${EMULATION_NAME}_after_open): Pass $prefix
to ldelf_after_open.
* Makefile.am: Correct z80 dependencies.
* Makefile.in: Regenerate.
Diffstat (limited to 'ld/ldelf.c')
-rw-r--r-- | ld/ldelf.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -894,7 +894,7 @@ ldelf_parse_ld_so_conf (struct ldelf_ld_so_conf *info, const char *filename) static bfd_boolean ldelf_check_ld_so_conf (const struct bfd_link_needed_list *l, int force, - int elfsize) + int elfsize, const char *prefix) { static bfd_boolean initialized; static const char *ld_so_conf; @@ -907,7 +907,7 @@ ldelf_check_ld_so_conf (const struct bfd_link_needed_list *l, int force, info.path = NULL; info.len = info.alloc = 0; - tmppath = concat (ld_sysroot, "${prefix}/etc/ld.so.conf", + tmppath = concat (ld_sysroot, prefix, "/etc/ld.so.conf", (const char *) NULL); if (!ldelf_parse_ld_so_conf (&info, tmppath)) { @@ -986,7 +986,7 @@ ldelf_check_needed (lang_input_statement_type *s) void ldelf_after_open (int use_libpath, int native, int is_linux, int is_freebsd, - int elfsize) + int elfsize, const char *prefix) { struct bfd_link_needed_list *needed, *l; struct elf_link_hash_table *htab; @@ -1260,7 +1260,7 @@ ldelf_after_open (int use_libpath, int native, int is_linux, int is_freebsd, break; if (is_linux - && ldelf_check_ld_so_conf (l, force, elfsize)) + && ldelf_check_ld_so_conf (l, force, elfsize, prefix)) break; } |