lua-users home
lua-l archive

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


AND

I have a question regarding building the lua dll on Win32.
(For as long as I have been building Lua) to get Luac to build with
VC I have needed to export the following items from luaNN.dll

+	/export:luaU_dump	\
+	/export:luaM_toobig \
+	/export:luaM_realloc_ \
+	/export:luaS_newlstr  \
+	/export:luaD_growstack	\
+	/export:luaF_newproto \

I have had the same issue on other (Not *nix) platforms. Other than
statically linking luac does anyone know of an easy way to resolve this,
without generating duplicate entry points when linking?

David B