调试部署时附带的符号
我想知道为什么软件要部署相关的调试符号。有什么优点和缺点?是否存在代码泄露问题(信息安全相关问题)?
I wonder why software shall be deployed with its related debugging symbols. What are advantages and disadvantages? Are there code revealing issues (information security related issues)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用或不使用调试信息进行编译,或者在 unix 系统上,您可以运行
strip
从已编译的可执行文件中删除调试信息。缺乏调试信息将:
因此,在一般开发中,您需要调试信息,但对于 QA 和发布,您通常希望将其忽略。如果您向您更信任的客户提供库,您可能更倾向于保留它。
You can compile with or without debug info, or on unix systems, you can run
strip
to remove debugging info from a compiled executable.A lack of debug info will:
So in general development, you want debug info, but for QA and release, you generally want to leave it out. If you supply libraries to customers that you trust more, you may be more inclined to leave it in.