丢弃符号有什么缺点?
GNU/Linux 上的程序 strip
(man) 允许您丢弃目标文件或可执行文件中的符号。通过这样做,您可以获得更小的文件大小。
所以我的问题是丢弃这些符号的权衡是什么?
the program strip
on GNU/Linux (man) allows you to discard symbols from object files or executables. By doing this you gain a smaller file size.
So my question is what are the trade-offs of discarding the symbols?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它使调试变得更加困难,因为您不再知道哪些变量或函数存储在内存中的位置。
It makes debugging a great deal harder, since you no longer know what variables or functions are stored where in memory.