summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn-Mark Bell <jmb@netsurf-browser.org>2023-12-18 18:24:55 +0000
committerJohn-Mark Bell <jmb@netsurf-browser.org>2023-12-18 18:24:55 +0000
commit87b32e7a952275276deb1c29cfa9655f2fe7c9a3 (patch)
treee336b226c7c14eaa5913e38c19a3315f18bfd58b /Makefile
parentcaa9c7239d6d608c4c3d4e71e7d08d4de8cc6e4a (diff)
downloadttf2f-master.tar.gz
ttf2f-master.tar.bz2
Update EABI detection for soft-float toolchain.HEADmaster
We can have either arm-riscos-gnueabi (ARMv4 with softfp) or arm-riscos-gnueabihf (ARMv7 with VFP). In either case, we need elf2aif to inject the EABI support code.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 39d8ddc..99badc1 100644
--- a/Makefile
+++ b/Makefile
@@ -57,7 +57,7 @@ ifeq ($(findstring -riscos,$(HOST)),-riscos)
POST_TARGETS := $(realoutput) $(POST_TARGETS)
ELF2AIF_FLAGS :=
- ifeq ($(HOST),arm-riscos-gnueabihf)
+ ifeq ($(findstring -gnueabi,$(HOST)),-gnueabi)
ELF2AIF_FLAGS := -e $(ELF2AIF_FLAGS)
endif