diff options
author | Mike Pall <mike> | 2012-06-13 02:32:24 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2012-06-13 02:32:24 +0200 |
commit | ca6bf2d9a41fb2c0c80bafdbaf2e29421b2cb55d (patch) | |
tree | 2489b763b62323fe844789f611325528c1806e82 /src/Makefile | |
parent | 4f9db0fbc3368a7f78370c33740e34cb1d391383 (diff) | |
download | luajit-ca6bf2d9a41fb2c0c80bafdbaf2e29421b2cb55d.tar.gz luajit-ca6bf2d9a41fb2c0c80bafdbaf2e29421b2cb55d.tar.bz2 luajit-ca6bf2d9a41fb2c0c80bafdbaf2e29421b2cb55d.zip |
CONSOLE: Handle P64, GPR64, TOC* and PPE (PS3) in PPC interpreter.
PS3 build command: make HOST_CC="gcc -m32" CROSS=ppu-lv2-
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 58dcdc01..c3aa2ca2 100644 --- a/src/Makefile +++ b/src/Makefile | |||
@@ -404,8 +404,11 @@ ifeq (ppc,$(TARGET_LJARCH)) | |||
404 | ifneq (,$(findstring LJ_ARCH_ROUND 1,$(TARGET_TESTARCH))) | 404 | ifneq (,$(findstring LJ_ARCH_ROUND 1,$(TARGET_TESTARCH))) |
405 | DASM_AFLAGS+= -D ROUND | 405 | DASM_AFLAGS+= -D ROUND |
406 | endif | 406 | endif |
407 | ifneq (,$(findstring LJ_ARCH_PPC64 1,$(TARGET_TESTARCH))) | ||
408 | DASM_AFLAGS+= -D GPR64 | ||
409 | endif | ||
407 | ifeq (PS3,$(TARGET_SYS)) | 410 | ifeq (PS3,$(TARGET_SYS)) |
408 | DASM_AFLAGS+= -D PS3 | 411 | DASM_AFLAGS+= -D PPE -D TOC |
409 | endif | 412 | endif |
410 | endif | 413 | endif |
411 | endif | 414 | endif |