On Thu, Jun 13, 2013 at 10:35 PM, Bram Moolenaar <[email protected]> wrote: > > Hiroshi Shirosaki wrote: >> On Windows just replacing Lua's dll with LuaJIT's dll in Vim directory >> seems to work as expected without rebuilding vim in the case of >> dynamic link. Now LuaJIT bundled vim binary for Windows is distributed >> by kaoriya.[4] > > Does this require renaming the .dll, thus afterwards you may forget that > the file is actually the JIT one? >
Taro MURAOKA said that dll file name of both Lua and JIT versions is same lua51.dll so we don't need to rename it on Windows and cannot know if it is actually JIT one by the file name. LuaJIT has `jit` built-in module so that we can see the linking dll version of LuaJIT. :lua print(jit.version) shows the LuaJIT version string. http://luajit.org/ext_jit.html On Fri, Jun 14, 2013 at 12:47 PM, Luis Carvalho <[email protected]> wrote: > Since Lua 5.2 is the official Lua release, I'd suggest to stick to it as the > default and have a --with-luajit option as before. Then would adding document for `--with-luajit` be better? I'm not sure where is the right place for the document. src/INSTALL? I wrote a document patch for it. https://gist.github.com/5780295 -- Hiroshi Shirosaki -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
