lua-users home
lua-l archive

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


> Is removing -DLUA_BUILD_AS_DLL from the makefile a good decision ??

In Windows I think you need to build Lua as a DLL if you want to
dynamically load C libraries. If your application does not need that,
then it's fine to link Lua statically. (For Linux, the recommendation
is exactly the opposite: link Lua statically but export its symbols.)