mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-31 14:01:18 +08:00
[AArch64] Adjust elf_machine_dynamic to find _DYNAMIC via _GLOBAL_OFFSET_TABLE_
This commit is contained in:
parent
03ea4d9b69
commit
ed0257f7d3
@ -1,3 +1,8 @@
|
||||
2013-06-28 Marcus Shawcroft <marcus.shawcroft@linaro.org>
|
||||
|
||||
* sysdeps/aarch64/dl-machine.h (elf_machine_dynamic): De-reference
|
||||
_GLOBAL_OFFSET_TABLE_.
|
||||
|
||||
2013-06-28 Marcus Shawcroft <marcus.shawcroft@linaro.org>
|
||||
|
||||
* sysdeps/unix/sysv/linux/aarch64/getcontext.S (__getcontext): Simplify
|
||||
|
@ -36,8 +36,8 @@ elf_machine_matches_host (const ElfW(Ehdr) *ehdr)
|
||||
static inline ElfW(Addr) __attribute__ ((unused))
|
||||
elf_machine_dynamic (void)
|
||||
{
|
||||
ElfW(Addr) addr = (ElfW(Addr)) &_DYNAMIC;
|
||||
return addr;
|
||||
extern const ElfW(Addr) _GLOBAL_OFFSET_TABLE_[] attribute_hidden;
|
||||
return _GLOBAL_OFFSET_TABLE_[0];
|
||||
}
|
||||
|
||||
/* Return the run-time load address of the shared object. */
|
||||
|
Loading…
x
Reference in New Issue
Block a user