admin 管理员组

文章数量: 887017

一位同事在更新了 Unity 插件后,运行时报错

Plugins: Failed to load 'Assets/FacebookSDK/Plugins/Windows/x64/LibFBGPlatform.dll' because one or more of its dependencies could not be loaded.
Facebook.Unity.Windows.WindowsWrapper:Deinit()
Facebook.Unity.Windows.WindowsFacebook:Deinit()
Facebook.Unity.Windows.WindowsFacebookGameObject:OnDestroy()

运行需要的 LibFBGPlatform.dll 库文件,因缺少依赖库而无法加载,导致出错。

该类错误在 Windows 下比较常见,通常由于本地安装的软件环境不同导致。

首先,需要确定缺少的依赖库是什么!

Dependency Walker (depends.exe) Home Pagehttp://www.dependencywalker/下载 Depends 可视化工具

运行打开需要确认的文件(支持exe,dll等)

 如有缺少的库文件,左上窗口的图标会显示为黄色?

找到正确的依赖库文件,放到合理位置!

该同事本地缺少 vcruntime140_1.dll

在我的 Depends 中显然有该文件,右键点击查看文件位置为
C:\Windows\System32\vcruntime140_1.dll

复制文件给同事,放到同样位置后,问题得到解决。

本文标签: Windows