

码龄10年
暂无认证
34103访问
1
等级
8获赞
3
评论
热门文章
-
一.某岛之人物对象及其加密函数解析
2147
-
一.《传奇M》装备栏遍历的突破口
1789
-
二.某龙端游中LUA的分析和调用
1539
-
一.《轩辕传奇》周围遍历之二叉树
1384
-
一.《UE4奥丁》人物最大属性
1329
最新评论
-
20240228阿⑤
积分乍获得
-
20231124ziher
666
-
20230909八月老师
什麼時候發佈易語言支持庫呢
三.《X32X64链接器》vs2017链接器重启问题
Heart
2024-11-27 14:09:32 发布
212
分类专栏: VS2017编译器 文章标签: VS2017编译器
LINK : the 32-bit linker (C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x86\link.exe) failed to do memory mapped file I/O on `..\..\..\..\..\..\lib\x86\Release\skia.lib' and is going to restart linking with a 64-bit linker for better throughput
LINK : restarting link with 64-bit linker
解决方法:
打开项目文件 *.vcxproj
搜索 "<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />"
添加x64 <PropertyGroup> <PreferredToolArchitecture>x64</PreferredToolArchitecture> </PropertyGroup>


评论列表