fix dynamic linker path file selection for arm vs armhf

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.
This commit is contained in:
Rich Felker 2016-01-20 01:16:09 +00:00
parent e4355bd6be
commit 56764601af
1 changed files with 3 additions and 3 deletions

View File

@ -6,10 +6,10 @@
#define ENDIAN_SUFFIX ""
#endif
#if __SOFTFP__
#define FP_SUFFIX ""
#else
#if __ARM_PCS_VFP
#define FP_SUFFIX "hf"
#else
#define FP_SUFFIX ""
#endif
#define LDSO_ARCH "arm" ENDIAN_SUFFIX FP_SUFFIX