如何在 Windows 10 上安装 LuaDist 时解决 CMake 错误

我一直在尝试安装 Luadist,但一直发生 CMake 错误,最终由于这个错误没有安装成功。

这似乎是 Windows 10 上的常见问题。我按照 https://github.com/LuaDist/Repository/wiki/LuaDist%3A-Installationhttps://github.com/LuaDist/Repository/wiki/Installation-of-System-Dependencies#microsoft-windows 上的说明操作。我已经尝试卸载并重新安装,但仍然不起作用。我尝试在与 LuaDist 相同的驱动器上安装 Lua,但仍然无法解决。我认为错误可能是因为我也安装了 LuaRocks,我不知道它们是否兼容。

[ 37%] 执行 'luafilesystem' 的配置步骤
正在加载 C:/Users/User/_bootstrap/_bootstrap/tmp/config.cmake 初始缓存文件
CMakeMinGWFindMake.cmake:12: (message) 在您的 PATH 中找到 sh.exe,这里:

  C:/Program Files/Git/usr/bin/sh.exe

为使 MinGW make 正常工作,不得将 sh.exe 放在您的路径中。

从不带有 sh.exe 的 shell 中运行 cmake。

如果要使用 UNIX shell,请使用 MSYS Makefiles。

调用堆栈 (最近的调用在最上面):
  CMakeLists.txt:7 (project)

CMAKE_C_COMPILER 未设置,EnableLanguage 后
-- 配置不完整,发生错误!
CMakeFiles\luafilesystem.dir\build.make:106: recipe for target 'luafilesystem/src/luafilesystem-stamp/luafilesystem-configure' failed
mingw32-make.exe[3]: *** [luafilesystem/src/luafilesystem-stamp/luafilesystem-configure] Error 1
CMakeFiles\Makefile2:114: recipe for target 'CMakeFiles/luafilesystem.dir/all' failed
mingw32-make.exe[2]: *** [CMakeFiles/luafilesystem.dir/all] Error 2
CMakeFiles\Makefile2:175: recipe for target 'CMakeFiles/install.dir/rule' failed
mingw32-make.exe[1]: *** [CMakeFiles/install.dir/rule] Error 2
Makefile:156: recipe for target 'install' failed
mingw32-make.exe: *** [install] Error 2
## Bootstrap 完成,使用 LuaDist 构建 LuaDist
'C:\Users\User\_bootstrap\_bootstrap\bin\luadist.exe' 不是内部或外部命令,也不是可运行的程序或批处理文件。
## LuaDist 现已构建并可在 C:\Users\User\_bootstrap\_install 中找到

最后显示 LuaDist 构建在 C:\Users\User_bootstrap_install 中,但安装后并不存在该文件夹。

原文链接 https://stackoverflow.com/questions/57679724

点赞