UATHelper: 打包 (Linux): Running: C:\Program Files\Epic Games\UE_5.2\Engine\Binaries\ThirdParty\DotNet\6.0.302\windows\dotnet.exe "C:\Program Files\Epic Games\UE_5.2\Engine\Binaries\DotNET\UnrealBuildTool\UnrealBuildTool.dll" Cesium Linux Development -Project="C:\Users\卓翼\Documents\Unreal Projects\Cesium\Cesium.uproject" "C:\Users\卓翼\Documents\Unreal Projects\Cesium\Cesium.uproject" -NoUBTMakefiles -remoteini="C:\Users\卓翼\Documents\Unreal Projects\Cesium" -skipdeploy -Manifest="C:\Users\卓翼\Documents\Unreal Projects\Cesium\Intermediate\Build\Manifest.xml" -NoHotReload -log="C:\Users\卓翼\AppDat a\Roaming\Unreal Engine\AutomationTool\Logs\C+Program+Files+Epic+Games+UE_5.2\UBT-Cesium-Linux-Development.txt" UATHelper: 打包 (Linux): Log file: C:\Users\��\AppData\Roaming\Unreal Engine\AutomationTool\Logs\C+Program+Files+Epic+Games+UE_5.2\UBT-Cesium-Linux-Development.txt UATHelper: 打包 (Linux): Missing precompiled manifest for 'CesiumRuntime', 'C:\Program Files\Epic Games\UE_5.2\Engine\Plugins\Marketplace\CesiumForUnreal\Intermediate\Build\Linux\UnrealGame\Development\CesiumRuntime\CesiumRuntime.precompiled'. This module was most likely not flagged for being included in a precompiled build - set 'PrecompileForTargets = PrecompileTargetsType.Any;' in CesiumRuntime.build.cs to override. If part of a plugin, also check if its 'Type' is correct. UATHelper: 打包 (Linux): Took 1.1931896s to run dotnet.exe, ExitCode=6 UATHelper: 打包 (Linux): UnrealBuildTool failed. See log for more details. (C:\Users\卓翼\AppData\Roaming\Unreal Engine\AutomationTool\Logs\C+Program+Files+Epic+Games+UE_5.2\UBT-Cesium-Linux-Development.txt) UATHelper: 打包 (Linux): AutomationTool executed for 0h 0m 3s UATHelper: 打包 (Linux): AutomationTool exiting with ExitCode=6 (6) UATHelper: 打包 (Linux): BUILD FAILED PackagingResults: Error: Unknown Error
时间: 2023-07-17 07:05:42 浏览: 411
Epic Games\UE_4.26\Engine\Binaries\ThirdParty\CEF3\Win64
5星 · 资源好评率100%
根据错误日志来看,问题似乎出在CesiumRuntime模块的预编译清单缺失。这可能是因为该模块未被设置为包含在预编译构建中,你可以尝试以下解决方法:
1. 打开项目中的CesiumRuntime.build.cs文件。
2. 确保该文件中的`PrecompileForTargets`设置为`PrecompileTargetsType.Any`,以覆盖默认设置。
3. 如果CesiumRuntime模块是插件的一部分,请确保插件的`Type`设置正确。
完成以上步骤后,尝试重新打包项目并观察是否仍然出现相同的错误。如果问题仍然存在,请提供完整的错误日志,以便我可以更进一步地帮助你解决问题。
阅读全文