我正在使用 Luarocks 2.2.0beta1 在Windows 7上使用 lua 5.2 和 mingw 安装 luafilesystem 。我收到了这个错误:
>luarocks install luafilesystem
Installing http://rocks.moonscript.org/luafilesystem-1.6.2-2.src.rock...
Using http://rocks.moonscript.org/luafilesystem-1.6.2-2.src.rock... switching to 'build' mode
mingw32-gcc -O2 -c -o src/lfs.o -IC:/lua/include/src/lfs.c
mingw32-gcc -shared -o lfs.dll src/lfs.o C:/lua/bin/lua52.dll -lm
C:\lua\bin\lua52.dll: file not recognized: File format not recognized
collect2.exe: error: Id returned 1 exit status
Error: Build error: Failed compiling module lfs.dll
任何想法如何解决这个问题?
注意:到目前为止,我没有问题安装其他模块与luarocks没有依赖luafilesystem。
答案 0 :(得分:2)
解决了,出现这个问题是因为实际上我在构建lua52.dll
时没有使用相同的MinGW编译器。我不知道我第一次使用哪个编译器。感谢@siffiejoe