Visual Studio 生成的二进制文件真的没有任何符号吗?
所有输出都相同:
SYMBOL TABLE:
no symbols
这是我在多次试验 objdump
后发现的,这是真的吗?
如果是这样的话,我想进一步说明一下:Windows下的所有二进制文件都没有符号吗?
All output the same:
SYMBOL TABLE:
no symbols
This is what I find after several experiment with objdump
,is this true?
If that's the case,I want to give it a little further: is it true all binaries under windows don't have symbols?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Visual Studio 默认设置将调试符号放入扩展名为 .pdb 的单独文件中。
阅读 @metamat 的此答案这解释了通过更改编译器选项可以获得的其他调试格式。
Visual Studio default settings put debug symbols into a separate file with a .pdb extension.
Read this answer by @metamatt which explains the other debug formats you can get by changing compiler options.