diff options
author | Mike Pall <mike> | 2012-06-11 00:49:47 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2012-06-11 00:49:47 +0200 |
commit | 02acb39b1009eaba1fe64d58c3e56cbc2a2c344e (patch) | |
tree | 9004e5af79b25552aa80e271031b740448ce6ae2 /src/Makefile | |
parent | c99439b3be6104c48fc5c6139826466c8d7f356d (diff) | |
download | luajit-02acb39b1009eaba1fe64d58c3e56cbc2a2c344e.tar.gz luajit-02acb39b1009eaba1fe64d58c3e56cbc2a2c344e.tar.bz2 luajit-02acb39b1009eaba1fe64d58c3e56cbc2a2c344e.zip |
ARM: Cleanup interpreter.
Use DynASM defines instead of C defines.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
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)) | |||
390 | DASM_AFLAGS+= -D X64 | 390 | DASM_AFLAGS+= -D X64 |
391 | DASM_ARCH= x86 | 391 | DASM_ARCH= x86 |
392 | else | 392 | else |
393 | ifeq (arm,$(TARGET_LJARCH)) | ||
394 | ifeq (iOS,$(TARGET_SYS)) | ||
395 | DASM_AFLAGS+= -D IOS | ||
396 | endif | ||
397 | else | ||
393 | ifeq (ppc,$(TARGET_LJARCH)) | 398 | ifeq (ppc,$(TARGET_LJARCH)) |
394 | ifneq (,$(findstring LJ_ARCH_SQRT 1,$(TARGET_TESTARCH))) | 399 | ifneq (,$(findstring LJ_ARCH_SQRT 1,$(TARGET_TESTARCH))) |
395 | DASM_AFLAGS+= -D SQRT | 400 | DASM_AFLAGS+= -D SQRT |
@@ -403,6 +408,7 @@ ifeq (ppc,$(TARGET_LJARCH)) | |||
403 | endif | 408 | endif |
404 | endif | 409 | endif |
405 | endif | 410 | endif |
411 | endif | ||
406 | 412 | ||
407 | DASM_FLAGS= $(DASM_XFLAGS) $(DASM_AFLAGS) | 413 | DASM_FLAGS= $(DASM_XFLAGS) $(DASM_AFLAGS) |
408 | DASM_DASC= vm_$(DASM_ARCH).dasc | 414 | DASM_DASC= vm_$(DASM_ARCH).dasc |