aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorMike Pall <mike>2015-03-06 03:47:45 +0100
committerMike Pall <mike>2015-03-06 03:47:45 +0100
commit361827c8f986a73cdccfc98ad16fe9f33ed6fb25 (patch)
tree06b31d2ed5972c8d60e378d80a86b89992a4d2e0 /src/Makefile
parentc821e0aded3973b0c43cddf55709cd3ad42a95d1 (diff)
downloadluajit-361827c8f986a73cdccfc98ad16fe9f33ed6fb25.tar.gz
luajit-361827c8f986a73cdccfc98ad16fe9f33ed6fb25.tar.bz2
luajit-361827c8f986a73cdccfc98ad16fe9f33ed6fb25.zip
PPC64: Add build infrastructure.
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index 71ab6ea0..d7539fd5 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -421,12 +421,15 @@ ifeq (ppc,$(TARGET_LJARCH))
421 ifneq (,$(findstring LJ_ARCH_ROUND 1,$(TARGET_TESTARCH))) 421 ifneq (,$(findstring LJ_ARCH_ROUND 1,$(TARGET_TESTARCH)))
422 DASM_AFLAGS+= -D ROUND 422 DASM_AFLAGS+= -D ROUND
423 endif 423 endif
424 ifneq (,$(findstring LJ_ARCH_PPC64 1,$(TARGET_TESTARCH))) 424 ifneq (,$(findstring LJ_ARCH_PPC32ON64 1,$(TARGET_TESTARCH)))
425 DASM_AFLAGS+= -D GPR64 425 DASM_AFLAGS+= -D GPR64
426 endif 426 endif
427 ifeq (PS3,$(TARGET_SYS)) 427 ifeq (PS3,$(TARGET_SYS))
428 DASM_AFLAGS+= -D PPE -D TOC 428 DASM_AFLAGS+= -D PPE -D TOC
429 endif 429 endif
430 ifneq (,$(findstring LJ_ARCH_PPC64 ,$(TARGET_TESTARCH)))
431 DASM_ARCH= ppc64
432 endif
430endif 433endif
431endif 434endif
432endif 435endif