aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMike Pall <mike>2012-10-04 13:55:34 +0200
committerMike Pall <mike>2012-10-04 13:55:34 +0200
commit0d62e2e1ab450a2d2d2291dc9da43606bd573bf7 (patch)
tree21424acdbe69e758ae290f6d909c58a86f6a4b47 /src
parent2e9f4efd200487b613af9ad90cee099f6d6d0af8 (diff)
downloadluajit-0d62e2e1ab450a2d2d2291dc9da43606bd573bf7.tar.gz
luajit-0d62e2e1ab450a2d2d2291dc9da43606bd573bf7.tar.bz2
luajit-0d62e2e1ab450a2d2d2291dc9da43606bd573bf7.zip
Clarify comments in Makefile on -DLUAJIT_ENABLE_LUA52COMPAT.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/Makefile b/src/Makefile
index 8b7218e7..278324a1 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -96,9 +96,10 @@ XCFLAGS=
96# make use of it. 96# make use of it.
97#XCFLAGS+= -DLUAJIT_DISABLE_FFI 97#XCFLAGS+= -DLUAJIT_DISABLE_FFI
98# 98#
99# Enable some upwards-compatible features from Lua 5.2 that are unlikely 99# Features from Lua 5.2 that are unlikely to break existing code are
100# to break existing code (e.g. __pairs). Note that this does not provide 100# enabled by default. Some other features that *might* break some existing
101# full compatibility with Lua 5.2 at this time. 101# code (e.g. __pairs or os.execute() return values) can be enabled here.
102# Note: this does not provide full compatibility with Lua 5.2 at this time.
102#XCFLAGS+= -DLUAJIT_ENABLE_LUA52COMPAT 103#XCFLAGS+= -DLUAJIT_ENABLE_LUA52COMPAT
103# 104#
104# Disable the JIT compiler, i.e. turn LuaJIT into a pure interpreter. 105# Disable the JIT compiler, i.e. turn LuaJIT into a pure interpreter.