mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 23:00:07 +00:00
mips: Don't check _DYNAMIC in elf_machine_load_address
Since mips can't convert access _DYNAMIC via GOT, which needs dynamic relocation, to PC-relative at link-time, don't check _DYNAMIC in elf_machine_load_address. * sysdeps/mips/dl-machine.h (elf_machine_load_address): Don't check _DYNAMIC.
This commit is contained in:
parent
c34a19ed4b
commit
0c609d19e3
@ -1,3 +1,8 @@
|
||||
2017-10-03 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* sysdeps/mips/dl-machine.h (elf_machine_load_address): Don't
|
||||
check _DYNAMIC.
|
||||
|
||||
2017-10-03 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* sysdeps/arm/dl-machine.h (elf_machine_load_address): Don't
|
||||
|
@ -147,11 +147,6 @@ elf_machine_dynamic (void)
|
||||
static inline ElfW(Addr)
|
||||
elf_machine_load_address (void)
|
||||
{
|
||||
#ifndef SHARED
|
||||
extern ElfW(Dyn) _DYNAMIC[] __attribute__((weak, visibility ("hidden")));
|
||||
if (!_DYNAMIC)
|
||||
return 0;
|
||||
#endif
|
||||
ElfW(Addr) addr;
|
||||
#ifndef __mips16
|
||||
asm (" .set noreorder\n"
|
||||
|
Loading…
Reference in New Issue
Block a user