Work around broken compilers (like fpc) on armhf
authorAdam Conrad <adconrad@debian.org>
Sun, 28 Jan 2024 22:58:14 +0000 (23:58 +0100)
committerAurelien Jarno <aurel32@debian.org>
Sun, 28 Jan 2024 22:58:14 +0000 (23:58 +0100)
Forwarded: no

patches/arm/local-vfp-sysdeps.diff: Force the Tag_ABI_HardFP_use
and Tag_ABI_VFP_args EABI tags when building for armhf, so compilers
only linking crti.o will generate what appear to be armhf binaries.

Gbp-Pq: Topic arm
Gbp-Pq: Name local-vfp-sysdeps.diff

sysdeps/arm/sysdep.h

index 5fff50dbfaad5fb43a26615da7b956d4b0853268..0e63b570e02efc781f77283bbd6482d028e13255 100644 (file)
    the caller.  */
        .eabi_attribute 24, 1
 
+#ifdef __ARM_PCS_VFP
+/* Tag_ABI_HardFP_use: This code uses hard floating point */
+       .eabi_attribute 27, 3
+/* Tag_ABI_VFP_args: This code stores FP arguments in VFP registers */
+       .eabi_attribute 28, 1
+#endif  /* __ARM_PCS_VFP */
+
 /* The thumb2 encoding is reasonably complete.  Unless suppressed, use it.  */
        .syntax unified
 # if defined(__thumb2__) && !defined(NO_THUMB)