首页 > 其他分享 >VC6: LNK 1202 missing debugging info in .pdb file

VC6: LNK 1202 missing debugging info in .pdb file

时间:2023-04-17 16:23:45浏览次数:56  
标签:info debugging lib information missing file pdb

"fatal error link 1202: Debug\vc60.pdb is missing debugging information for referencing module"

 

产生原因是:在当前项目中引用了另一个项目的lib库,我将当将项目设置生成PDB type : Con, 但是另一个项目的lib库可能没有对应的pdb,重新编译那个lib库,重引用它
再编译当前项目,错误消失,就是pdb文件签名不匹配了,调整一至就可以了。


 

LNK 4204 missing debugging info in .pdb file

Hi,


I have a MFC application that I am trying to run, I included a .lib in the application and the tried to link it, which then produce the warning vc60.pdb is missing debugging information for reference module. Does anyone has any idea as to how to fix this problem.

Thanks
Reply With QuoteReply With Quote
  1. September 18th, 2003, 04:58 AM#2 SeventhStar's Avatar SeventhStar SeventhStar is offlineMember +
    Join Date
    Nov 2002
    Location
    Sofia, Bulgaria
    Posts
    661
    Visual C++ Concepts: Building a C/C++ Program
    Linker Tools Warning LNK4204

    'filename' is missing debugging information for referencing module; linking object as if no debug info

    The .pdb file has an erroneous signature. The linker will continue to link the object without debug information. You may want to recompile the object file using the /Zi option.

    that's what is written in MSDN
    but why don't you try rebuilding the app first. I think it might help

标签:info,debugging,lib,information,missing,file,pdb
From: https://www.cnblogs.com/ioriwellings/p/17326224.html

相关文章

  • Vulnhub之Infosec Warrior靶机详细测试过程(不同的思路)
    InfosecWarrior作者:jasonhuawen靶机信息名称:InfoSecWarriorCTF2020:01地址:https://www.vulnhub.com/entry/infosecwarrior-ctf-2020-01,446/识别目标主机IP地址─(kali㉿kali)-[~/Vulnhub/Infosec]└─$sudonetdiscover-ieth1-r192.168.56.0/24Currentlysc......
  • Dockerfile自定义镜像
    常见的镜像在DockerHub就能找到,但是我们自己写的项目就必须自己构建镜像了。镜像结构镜像是将应用程序及其需要的系统函数库、环境、配置、依赖打包而成。我们以MySQL为例,来看看镜像的组成结构:简单来说,镜像就是在系统函数库、运行环境基础上,添加应用程序文件、配置文件、......
  • Helm模板.Files.Get函数
     常规用法apiVersion:v1kind:ConfigMapmetadata:name:templatesbinaryData:file1:{{.Files.Get"files/file1"|b64enc}}file2:{{.Files.Get"files/file2"|b64enc}}#错误示例apiVersion:v1kind:ConfigMapmetadata:name:temp......
  • C#Winform窗体操作类&控件属性类
    WinForm磁性窗体吸附边缘1#region磁性窗体23publicclassMagneticManager4{5publicclassChildFormInfo6{7publicFormChild{get;set;}8publicMagne......
  • Markfile
    Makefile为Go项目编写Makefile发布于2020/07/26,更新于2020/07/2619:55:02|Golang|总阅读量:14368次借助Makefile我们在编译过程中不再需要每次手动输入编译的命令和编译的参数,可以极大简化项目编译过程。make介绍make是一个构建自动化工具,会在当前目录下寻找Makefile或m......
  • java -- File类和递归
    File类java.io.File类是文件和目录路径名的抽象表示,主要用于文件和目录的创建、查找和删除等操作。File类将文件,文件夹和路径封装成了对象,提供大量的方法来操作这些对象。静态常量//静态常量staticStringpathSeparator//与系统有关的路径分隔符 //Window操作系统,分隔......
  • file-rotatelogs包实现日志文件的轮转切割
    1.go语言本身的日志系统是很强大的,例如:"log""github.com/sirupsen/logrus"但,go语言本身并没有日志轮询机制,(就是将日志定期清理,保存,使之不会不停涨大)2.此处使介绍了一个file-rotatelogs包"github.com/lestrrat-go/file-rotatelogs"****它可以和标准的日志结合使用****......
  • mac 环境下 启动postgrep 报错 "/tmp/.s.PGSQL.5432" failed: No such file or direc
    报错截图:解决方案:使用重新启动,postgrep服务:brewservicesrestartpostgresql......
  • Dockerfile 构建镜像
    Dockerfile构建镜像什么是DockerfileDocker通过读取Dockerfile中的指令来构建镜像,类似C语言开发时使用Make通过Makefile构建项目其中包含Docker控制指令,这些指令遵循将应用程序组装成容器映像所需的特定格式,官方标准https://docs.docker.com/engine/reference/b......
  • Linux procinfo命令
    Linuxprocinfo命令简介非默认命令,需要手工安装Linuxprocinfo命令用于显示系统状态。procinfo(processinformation)指令从/proc目录里读取相关数据,将数据妥善整理过后输出到标准输出设备。语法procinfo[-abdDfhimsSv][-F<输出文件>][-n<间隔秒数>]参数说明:-a显......