armhf-64k-alignment
authorMatthias Klose <doko@debian.org>
Sun, 15 Dec 2024 10:00:07 +0000 (11:00 +0100)
committerMatthias Klose <doko@debian.org>
Sun, 15 Dec 2024 10:00:07 +0000 (11:00 +0100)
The upstream binutils commit below reduced the section alignment of
armhf executables (including shared libraries) from 64k to 4k, on the
basis that the additional bloat is not justified, given that arm64 hosts
running 64k pagesize kernels with armhf user space are not used in
practice.

However, the situation is slightly different today on Debian, where a
16k pagesize kernel is provided that enables compat support, and is
therefore able to execute armhf user space. The only impediment is the
fact that armhf binaries are no longer compatible with this, due to the
change below.

To accommodate this use case, revert the patch. This makes the generated
executables compatible with compat mode on arm64 systems running 16k
kernels.

Gbp-Pq: Name armhf-64k-alignment.diff

bfd/elf32-arm.c

index 17df8b30eb63f821c1c0db047d7d3484cd07ca1d..a5c8370356cb9f409e88bbb25d9b92506ed0b0d8 100644 (file)
@@ -20355,7 +20355,11 @@ elf32_arm_backend_symbol_processing (bfd *abfd, asymbol *sym)
 #define ELF_ARCH                       bfd_arch_arm
 #define ELF_TARGET_ID                  ARM_ELF_DATA
 #define ELF_MACHINE_CODE               EM_ARM
+#ifdef __QNXTARGET__
 #define ELF_MAXPAGESIZE                        0x1000
+#else
+#define ELF_MAXPAGESIZE                        0x10000
+#endif
 #define ELF_COMMONPAGESIZE             0x1000
 
 #define bfd_elf32_mkobject                     elf32_arm_mkobject