From 02acb39b1009eaba1fe64d58c3e56cbc2a2c344e Mon Sep 17 00:00:00 2001 From: Mike Pall Date: Mon, 11 Jun 2012 00:49:47 +0200 Subject: ARM: Cleanup interpreter. Use DynASM defines instead of C defines. --- src/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile index 9d21c3fb..c100bd3c 100644 --- a/src/Makefile +++ b/src/Makefile @@ -390,6 +390,11 @@ ifeq (x64,$(TARGET_LJARCH)) DASM_AFLAGS+= -D X64 DASM_ARCH= x86 else +ifeq (arm,$(TARGET_LJARCH)) + ifeq (iOS,$(TARGET_SYS)) + DASM_AFLAGS+= -D IOS + endif +else ifeq (ppc,$(TARGET_LJARCH)) ifneq (,$(findstring LJ_ARCH_SQRT 1,$(TARGET_TESTARCH))) DASM_AFLAGS+= -D SQRT @@ -403,6 +408,7 @@ ifeq (ppc,$(TARGET_LJARCH)) endif endif endif +endif DASM_FLAGS= $(DASM_XFLAGS) $(DASM_AFLAGS) DASM_DASC= vm_$(DASM_ARCH).dasc -- cgit v1.2.3-55-g6feb