From ca6bf2d9a41fb2c0c80bafdbaf2e29421b2cb55d Mon Sep 17 00:00:00 2001 From: Mike Pall Date: Wed, 13 Jun 2012 02:32:24 +0200 Subject: CONSOLE: Handle P64, GPR64, TOC* and PPE (PS3) in PPC interpreter. PS3 build command: make HOST_CC="gcc -m32" CROSS=ppu-lv2- --- src/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/Makefile') 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)) ifneq (,$(findstring LJ_ARCH_ROUND 1,$(TARGET_TESTARCH))) DASM_AFLAGS+= -D ROUND endif + ifneq (,$(findstring LJ_ARCH_PPC64 1,$(TARGET_TESTARCH))) + DASM_AFLAGS+= -D GPR64 + endif ifeq (PS3,$(TARGET_SYS)) - DASM_AFLAGS+= -D PS3 + DASM_AFLAGS+= -D PPE -D TOC endif endif endif -- cgit v1.2.3-55-g6feb