ref: a365b42d3b7b06bb07e6907c77acca77719c139a
parent: ab1778a523ae7ee8721f173231ded6048d5251a5
author: Martin Storsjö <[email protected]>
date: Thu Jul 24 20:50:09 EDT 2014
Consistently use -f elf instead of -f elf32 The freebsd platform file already did things like this.
--- a/build/platform-android.mk
+++ b/build/platform-android.mk
@@ -17,7 +17,7 @@
else ifeq ($(ARCH), x86)
APP_ABI = x86
ifeq (Yes, $(USE_ASM))
- ASMFLAGS += -f elf32
+ ASMFLAGS += -f elf
endif
else ifeq ($(ARCH), x86_64)
APP_ABI = x86_64
--- a/build/platform-linux.mk
+++ b/build/platform-linux.mk
@@ -6,7 +6,7 @@
ifeq ($(ENABLE64BIT), Yes)
ASMFLAGS += -f elf64
else
-ASMFLAGS += -f elf32
+ASMFLAGS += -f elf
endif
endif
ifeq ($(ASM_ARCH), arm)