首页
社区
课程
招聘
PathFileExists release版本编译失败问题
发表于: 2012-9-3 01:32 5417

PathFileExists release版本编译失败问题

2012-9-3 01:32
5417
在MFC的cpp文件里头需要使用PathFileExists API,故导入下列lib:
#pragma comment(lib, "Shlwapi.lib") //仅为了使用API PathFileExists
#include "Shlwapi.h"
结果在debug版本可以编译过,而在release版本则爆出很多链接错误:
Linking...
error LNK2001: unresolved external symbol __except_list
error LNK2001: unresolved external symbol __except_list
error LNK2001: unresolved external symbol __except_list
error LNK2001: unresolved external symbol __except_list
error LNK2001: unresolved external symbol __fltused
error LNK2001: unresolved external symbol __fltused
error LNK2001: unresolved external symbol "public: __thiscall exception::exception(class exception const &)" (??0exception@@QAE@ABV0@@Z)
error LNK2001: unresolved external symbol "const type_info::`vftable'" (??_7type_info@@6B@)
error LNK2001: unresolved external symbol "const type_info::`vftable'" (??_7type_info@@6B@)
error LNK2001: unresolved external symbol "__declspec(dllimport) public: __thiscall exception::exception(char const * const &)" (__imp_??0exception@@QAE@ABQBD@Z)
error LNK2001: unresolved external symbol __CxxThrowException@8
error LNK2001: unresolved external symbol __CxxThrowException@8
error LNK2001: unresolved external symbol __chkstk
error LNK2001: unresolved external symbol __alloca_probe
error LNK2001: unresolved external symbol __alloca_probe
error LNK2001: unresolved external symbol __alloca_probe
LINK : error LNK2001: unresolved external symbol _WinMainCRTStartup
fatal error LNK1120: 9 unresolved externals

调整了下下列语句的位置,没有效果,求help
#pragma comment(lib, "Shlwapi.lib") //仅为了使用API PathFileExists
#include "Shlwapi.h"

[培训]内核驱动高级班,冲击BAT一流互联网大厂工作,每周日13:00-18:00直播授课

收藏
免费 0
支持
分享
最新回复 (4)
雪    币: 126
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
2
经过检查,屏蔽了下列库文件及引用的函数,还是报错,说明与下列的库无关
#pragma comment(lib, "Shlwapi.lib") //仅为了使用API PathFileExists
#include "Shlwapi.h"
迷茫ing...同样的代码,为啥debug可以编译过,而release不行...
2012-9-3 01:37
0
雪    币: 183
活跃值: (1284)
能力值: ( LV3,RANK:30 )
在线值:
发帖
回帖
粉丝
3
动态调用吧

这个链接错误是不是因为Shlwapi.lib 是debug版本的?
2012-9-3 09:29
0
雪    币: 128
活跃值: (27)
能力值: ( LV5,RANK:60 )
在线值:
发帖
回帖
粉丝
4
看起来…………个人猜测,
编译不过和PathFileExists以及 Shlwapi.lib无关
就算你不调用它估计也这样……
2012-9-3 09:49
0
雪    币: 126
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
5
什么原因不清楚 用脚本清理了下工程,重新编译 问题解决
谢谢各位
2012-9-3 17:22
0
游客
登录 | 注册 方可回帖
返回
//