diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2017-10-12 02:12:47 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2017-10-12 02:14:34 -0700 |
commit | 9f8575350f980aa6da8c488c6aa30862620eaa1f (patch) | |
tree | b0bc03bd7456aad7444e20a511405cf3ab4ccce4 /bfd/elf64-x86-64.c | |
parent | 359987e21867b730564ff46ddceaafdc93d0fb49 (diff) | |
download | gdb-9f8575350f980aa6da8c488c6aa30862620eaa1f.zip gdb-9f8575350f980aa6da8c488c6aa30862620eaa1f.tar.gz gdb-9f8575350f980aa6da8c488c6aa30862620eaa1f.tar.bz2 |
x86: Add _bfd_x86_elf_hide_symbol
When there is no dynamic interpreter in PIE, make the undefined weak
symbol dynamic so that PC relative branch to the undefined weak symbol
will land to address 0.
* elf32-i386.c (elf_backend_hide_symbol): New.
* elf64-x86-64.c (elf_backend_hide_symbol): Likewise.
* elfxx-x86.c (_bfd_x86_elf_hide_symbol): Likewise.
* elfxx-x86.h (_bfd_x86_elf_hide_symbol): Likewise.
Diffstat (limited to 'bfd/elf64-x86-64.c')
-rw-r--r-- | bfd/elf64-x86-64.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bfd/elf64-x86-64.c b/bfd/elf64-x86-64.c index 7d65dca..b970146 100644 --- a/bfd/elf64-x86-64.c +++ b/bfd/elf64-x86-64.c @@ -5187,7 +5187,9 @@ elf_x86_64_special_sections[]= #define elf_backend_additional_program_headers \ elf_x86_64_additional_program_headers #define elf_backend_setup_gnu_properties \ - elf_x86_64_link_setup_gnu_properties + elf_x86_64_link_setup_gnu_properties +#define elf_backend_hide_symbol \ + _bfd_x86_elf_hide_symbol #include "elf64-target.h" |