aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorMike Pall <mike>2016-05-28 05:10:55 +0200
committerMike Pall <mike>2016-05-28 05:10:55 +0200
commitd9986fbadb6c50b826e39e5f690bcf0b4cd6a20b (patch)
treec89961a1a8949c19872aa39269c2408dd6595733 /src/Makefile
parente3c4c9af0f07a114fb754fed6ac358a102f49e2f (diff)
downloadluajit-d9986fbadb6c50b826e39e5f690bcf0b4cd6a20b.tar.gz
luajit-d9986fbadb6c50b826e39e5f690bcf0b4cd6a20b.tar.bz2
luajit-d9986fbadb6c50b826e39e5f690bcf0b4cd6a20b.zip
MIPS64, part 1: Add MIPS64 support to interpreter.
Contributed by Djordje Kovacevic and Stefan Pejic from RT-RK.com. Sponsored by Cisco Systems, Inc.
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile6
1 files changed, 5 insertions, 1 deletions
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)))
257 ifneq (,$(findstring MIPSEL ,$(TARGET_TESTARCH))) 257 ifneq (,$(findstring MIPSEL ,$(TARGET_TESTARCH)))
258 TARGET_ARCH= -D__MIPSEL__=1 258 TARGET_ARCH= -D__MIPSEL__=1
259 endif 259 endif
260 TARGET_LJARCH= mips 260 ifneq (,$(findstring LJ_TARGET_MIPS64 ,$(TARGET_TESTARCH)))
261 TARGET_LJARCH= mips64
262 else
263 TARGET_LJARCH= mips
264 endif
261else 265else
262 $(error Unsupported target architecture) 266 $(error Unsupported target architecture)
263endif 267endif