【发布时间】:2020-03-28 13:38:37
【问题描述】:
我第一次尝试安装 azerothcore,但在 Visual Studio 2019 中构建解决方案时遇到了困难。据我所知,其他一切工作正常。如有必要,我可以发布 CMake 日志,但该步骤似乎进展顺利。
当我尝试构建解决方案时,出现 5 个问题:3 个项目构建失败,两个项目跳过。
失败:
- ace.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
- authserver.vcxproj
输出:
15>LINK : fatal error LNK1104: cannot open file '..\..\..\deps\acelite\ace\Debug\ace.lib'
值得注意的是,在这种情况下,它无法打开文件,因为没有要打开的文件。如果我导航到该位置,则没有 ace.lib。同样的错误发生在
- worldserver.vcxproj
输出:
16>LINK : fatal error LNK1104: cannot open file '..\..\..\deps\acelite\ace\Debug\ace.lib'
最后是两个skip。我不确定这里发生了什么(真的,我不确定任何地方发生了什么)。
- clean_cotire
关于这个错误,它只是说它没有被选中构建。这是 CMake 的问题吗?
- 安装
再次,它说它没有被选中为此配置构建。
这就是我所在的地方。我尝试在此板上找到类似的错误,但无济于事。我能对这些错误做些什么吗?
【问题讨论】:
标签: installation ace azerothcore