首页 > 解决方案 > 安装 AzerothCore 构建错误:ace.vcxproj、authserver.vcxproj、worldserver.vcxproj;跳过构建:clean_cotire,安装

问题描述

我第一次尝试安装 azerothcore,但在 Visual Studio 2019 中构建解决方案时遇到了困难。据我所知,其他一切都运行良好。如有必要,我可以发布 CMake 日志,但该步骤似乎进展顺利。

当我尝试构建解决方案时,出现 5 个问题:3 个项目无法构建,两个项目跳过。

失败:

  1. 王牌.vcxproj

输出:

3>C:\Users\myname\azerothcore\deps\acelite\ace\Process_Manager.cpp(142,1): fatal error C1001: Internal compiler error.
3>(compiler file 'msc1.cpp', line 1532)
3> To work around this problem, try simplifying or changing the program near the locations listed above.
3>If possible please provide a repro here: https://developercommunity.visualstudio.com
3>Please choose the Technical Support command on the Visual C++

3> Help menu, or open the Technical Support help file for more information
3>INTERNAL COMPILER ERROR in 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.25.28610\bin\HostX64\x64\CL.exe'
3>    Please choose the Technical Support command on the Visual C++
3>    Help menu, or open the Technical Support help file for more information
  1. authserver.vcxproj

输出:

15>LINK : fatal error LNK1104: cannot open file '..\..\..\deps\acelite\ace\Debug\ace.lib'

值得注意的是,在这种情况下,它无法打开文件,因为没有要打开的文件。如果我导航到该位置,则没有 ace.lib。同样的错误发生在

  1. 世界服务器.vcxproj

输出:

16>LINK : fatal error LNK1104: cannot open file '..\..\..\deps\acelite\ace\Debug\ace.lib'

最后,还有两个skip。我不确定这里发生了什么(真的,我不确定任何地方发生了什么)。

  1. clean_cotire

至于这个错误,它只是说它没有被选中构建。这是 CMake 的问题吗?

  1. 安装

同样,它表示没有选择为此配置进行构建。

所以这就是我所在的地方。我尝试在此板上找到类似的错误,但无济于事。我能对这些错误做些什么吗?

标签: installationaceazerothcore

解决方案


你在最新的 Visual Studio 2019 版本中遇到了错误。这已报告给 Microsoft,请参阅此 ACE 问题以获取链接。请安装旧版本,请参阅https://docs.microsoft.com/en-us/visualstudio/releases/2019/history以获取下载链接。

2020 年 5 月 18 日,此 ICE 的修复已合并到 ACE。


推荐阅读