diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-12-20 01:47:47 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-12-20 01:47:47 +0100 |
commit | 407765e9f24f5a82f318a9e069a977710ac99ee0 (patch) | |
tree | 59060f7b1468a96df5617bfe650890e159914c10 /sysdeps/i386/dl-machine.h | |
parent | e94b01393ecf2e886b57a8e0b9fe4478fc8ee835 (diff) | |
download | glibc-407765e9f24f5a82f318a9e069a977710ac99ee0.tar.gz glibc-407765e9f24f5a82f318a9e069a977710ac99ee0.tar.xz glibc-407765e9f24f5a82f318a9e069a977710ac99ee0.zip |
hurd: Fix ELF_MACHINE_USER_ADDRESS_MASK value
x86 binaries are linked at 0x08000000, so we need to let them get mapped there.
Diffstat (limited to 'sysdeps/i386/dl-machine.h')
-rw-r--r-- | sysdeps/i386/dl-machine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/i386/dl-machine.h b/sysdeps/i386/dl-machine.h index bdc21d1a3c..fea9e579ec 100644 --- a/sysdeps/i386/dl-machine.h +++ b/sysdeps/i386/dl-machine.h @@ -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; |