diff options
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index 87fddbad..3b9d202a 100644 --- a/src/Makefile +++ b/src/Makefile | |||
@@ -88,6 +88,12 @@ BUILDMODE= mixed | |||
88 | # recompile with "make clean", followed by "make". | 88 | # recompile with "make clean", followed by "make". |
89 | XCFLAGS= | 89 | XCFLAGS= |
90 | # | 90 | # |
91 | # Permanently disable the FFI extension to reduce the size of the LuaJIT | ||
92 | # executable. But please consider that the FFI library is compiled-in, | ||
93 | # but NOT loaded by default. It only allocates any memory, if you actually | ||
94 | # make use of it. | ||
95 | #XCFLAGS+= -DLUAJIT_DISABLE_FFI | ||
96 | # | ||
91 | # Enable some upwards-compatible features from Lua 5.2 that are unlikely | 97 | # Enable some upwards-compatible features from Lua 5.2 that are unlikely |
92 | # to break existing code (e.g. __pairs). Note that this does not provide | 98 | # to break existing code (e.g. __pairs). Note that this does not provide |
93 | # full compatibility with Lua 5.2 at this time. | 99 | # full compatibility with Lua 5.2 at this time. |