mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-08 17:42:12 +03: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:
@@ -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>
|
2017-10-03 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
* sysdeps/arm/dl-machine.h (elf_machine_load_address): Don't
|
* sysdeps/arm/dl-machine.h (elf_machine_load_address): Don't
|
||||||
|
@@ -147,11 +147,6 @@ elf_machine_dynamic (void)
|
|||||||
static inline ElfW(Addr)
|
static inline ElfW(Addr)
|
||||||
elf_machine_load_address (void)
|
elf_machine_load_address (void)
|
||||||
{
|
{
|
||||||
#ifndef SHARED
|
|
||||||
extern ElfW(Dyn) _DYNAMIC[] __attribute__((weak, visibility ("hidden")));
|
|
||||||
if (!_DYNAMIC)
|
|
||||||
return 0;
|
|
||||||
#endif
|
|
||||||
ElfW(Addr) addr;
|
ElfW(Addr) addr;
|
||||||
#ifndef __mips16
|
#ifndef __mips16
|
||||||
asm (" .set noreorder\n"
|
asm (" .set noreorder\n"
|
||||||
|
Reference in New Issue
Block a user