From d9986fbadb6c50b826e39e5f690bcf0b4cd6a20b Mon Sep 17 00:00:00 2001 From: Mike Pall Date: Sat, 28 May 2016 05:10:55 +0200 Subject: MIPS64, part 1: Add MIPS64 support to interpreter. Contributed by Djordje Kovacevic and Stefan Pejic from RT-RK.com. Sponsored by Cisco Systems, Inc. --- src/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile index 3f25192b..16aeba19 100644 --- a/src/Makefile +++ b/src/Makefile @@ -257,7 +257,11 @@ ifneq (,$(findstring LJ_TARGET_MIPS ,$(TARGET_TESTARCH))) ifneq (,$(findstring MIPSEL ,$(TARGET_TESTARCH))) TARGET_ARCH= -D__MIPSEL__=1 endif - TARGET_LJARCH= mips + ifneq (,$(findstring LJ_TARGET_MIPS64 ,$(TARGET_TESTARCH))) + TARGET_LJARCH= mips64 + else + TARGET_LJARCH= mips + endif else $(error Unsupported target architecture) endif -- cgit v1.2.3-55-g6feb