mirror of
git://git.musl-libc.org/musl
synced 2024-12-24 23:52:48 +00:00
56764601af
the __SOFTFP__ macro which was wrongly being used does not reflect the
ABI (arm vs armhf) but just the availability of floating point
instructions/registers, so -mfloat-abi=softfp was wrongly being
treated as armhf. __ARM_PCS_VFP is the correct predefined macro to
check for the armhf EABI variant. this macro usage was corrected for
the build process in commit 4918c2bb20
but reloc.h was apparently overlooked at the time.
33 lines
752 B
C
33 lines
752 B
C
#include <endian.h>
|
|
|
|
#if __BYTE_ORDER == __BIG_ENDIAN
|
|
#define ENDIAN_SUFFIX "eb"
|
|
#else
|
|
#define ENDIAN_SUFFIX ""
|
|
#endif
|
|
|
|
#if __ARM_PCS_VFP
|
|
#define FP_SUFFIX "hf"
|
|
#else
|
|
#define FP_SUFFIX ""
|
|
#endif
|
|
|
|
#define LDSO_ARCH "arm" ENDIAN_SUFFIX FP_SUFFIX
|
|
|
|
#define NO_LEGACY_INITFINI
|
|
|
|
#define TPOFF_K 8
|
|
|
|
#define REL_SYMBOLIC R_ARM_ABS32
|
|
#define REL_GOT R_ARM_GLOB_DAT
|
|
#define REL_PLT R_ARM_JUMP_SLOT
|
|
#define REL_RELATIVE R_ARM_RELATIVE
|
|
#define REL_COPY R_ARM_COPY
|
|
#define REL_DTPMOD R_ARM_TLS_DTPMOD32
|
|
#define REL_DTPOFF R_ARM_TLS_DTPOFF32
|
|
#define REL_TPOFF R_ARM_TLS_TPOFF32
|
|
//#define REL_TLSDESC R_ARM_TLS_DESC
|
|
|
|
#define CRTJMP(pc,sp) __asm__ __volatile__( \
|
|
"mov sp,%1 ; bx %0" : : "r"(pc), "r"(sp) : "memory" )
|