LuaJIT compiled with mingw doesn't produce .a file

Started by
1 comment, last by sunsflower 8 years, 4 months ago
I just download luajit from official site and then I do "mingw32-make" in luajit folder. The compilation succeeded and produce a lua51.dll, a luajit.exe and nothing else. I cannot link my program with luajit thus. What should I do to get the lib*.a file of luajit? thanks!
Advertisement


I cannot link my program with luajit thus

lua51.dll is the lib to link with.

gcc can link with .dll without import lib, just add lua51.dll to linker arguments.

thanks very much! It does work!

This topic is closed to new replies.

Advertisement