aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorMike Pall <mike>2011-10-24 16:35:17 +0200
committerMike Pall <mike>2011-10-24 16:35:17 +0200
commitfa9ade356b0543f11295023de3b4441a1e7d39a3 (patch)
tree4ed3765c8c3046672b1eafd17f303ee6e40988fb /src/Makefile
parent96d8611d1b3c038d565016c0383e2cb7a8064449 (diff)
downloadluajit-fa9ade356b0543f11295023de3b4441a1e7d39a3.tar.gz
luajit-fa9ade356b0543f11295023de3b4441a1e7d39a3.tar.bz2
luajit-fa9ade356b0543f11295023de3b4441a1e7d39a3.zip
Allow selection of single-number vs. dual-number mode in Makefile.
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile
index acde0dbb..30985003 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -118,6 +118,12 @@ XCFLAGS=
118# interpreter. Don't bother if your OS wouldn't run on them, anyway. 118# interpreter. Don't bother if your OS wouldn't run on them, anyway.
119#XCFLAGS+= -DLUAJIT_CPU_NOCMOV 119#XCFLAGS+= -DLUAJIT_CPU_NOCMOV
120# 120#
121# Some architectures (e.g. PPC) can use either single-number (1) or
122# dual-number (2) mode. Uncomment one of these lines to override the
123# default mode. Please see LJ_ARCH_NUMMODE in lj_arch.h for details.
124#XCFLAGS+= -DLUAJIT_NUMMODE=1
125#XCFLAGS+= -DLUAJIT_NUMMODE=2
126#
121############################################################################## 127##############################################################################
122 128
123############################################################################## 129##############################################################################