From: GNU Libc Maintainers Date: Tue, 7 Sep 2021 19:57:34 +0000 (+0100) Subject: git-ELF_MACHINE_USER_ADDRESS_MASK X-Git-Tag: archive/raspbian/2.32-4+rpi1~1^2^2~80 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=d5d60414f76c99f07991dbee31e11bec956b3674;p=glibc.git git-ELF_MACHINE_USER_ADDRESS_MASK Committed for 2.33 commit 407765e9f24f5a82f318a9e069a977710ac99ee0 Author: Samuel Thibault Date: Sun Dec 20 01:47:47 2020 +0100 hurd: Fix ELF_MACHINE_USER_ADDRESS_MASK value x86 binaries are linked at 0x08000000, so we need to let them get mapped there. Gbp-Pq: Topic hurd-i386 Gbp-Pq: Name git-ELF_MACHINE_USER_ADDRESS_MASK.diff --- diff --git a/sysdeps/i386/dl-machine.h b/sysdeps/i386/dl-machine.h index 672d8f27c..6c786a5c9 100644 --- a/sysdeps/i386/dl-machine.h +++ b/sysdeps/i386/dl-machine.h @@ -144,7 +144,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;