lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


Andrei Lapshin wrote:
> I'm trying to build LuaJIT RPM package for Fedora. Is there any
> method for build luajit shared library, luajit static library and
> dynamically linked luajit binary?

Umm, you don't want that mixture. The executable should be
statically linked for maximum speed. The extra space is negligible.

Oh, and the default BUILDMODE=mixed plus the 'amalg' target is the
way the other distros build LuaJIT. See, e.g. the Debian scripts:

  http://packages.debian.org/unstable/interpreters/luajit

--Mike