mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-24 10:22:41 +08:00
hurd: Fix ELF_MACHINE_USER_ADDRESS_MASK value
x86 binaries are linked at 0x08000000, so we need to let them get mapped there.
This commit is contained in:
parent
e94b01393e
commit
407765e9f2
@ -143,7 +143,7 @@ extern ElfW(Addr) _dl_profile_fixup (struct link_map *l,
|
||||
|
||||
/* Mask identifying addresses reserved for the user program,
|
||||
where the dynamic linker should not map anything. */
|
||||
#define ELF_MACHINE_USER_ADDRESS_MASK 0xf8000000UL
|
||||
#define ELF_MACHINE_USER_ADDRESS_MASK 0xf0000000UL
|
||||
|
||||
/* Initial entry point code for the dynamic linker.
|
||||
The C function `_dl_start' is the real entry point;
|
||||
|
Loading…
Reference in New Issue
Block a user