标签:strong lin str rip 信息 使用 bsp 原来 arm
3.2.1 1. 移除所有的符号信息 [arm@localhost gcc]#cp hello hello1
[arm@localhost gcc]#armlinuxstrip stripall hello
stripall: 是移除所有符号信息
[arm@localhost gcc]#ll
rwxrxrx 1 arm root 2856 7 月 3 15:14 hello
rwxrxrx 1 arm root 13682 7 月 3 15:13 hello1
被 strip 后的 hello 程序比原来的 hello1 程序要小很多。
2. 移除调试符号信息
[arm@localhost gcc]#armlinuxstrip g hello [arm@localhost gcc]#ll
rwxrxrx 1 arm root 4501 7 月 3 15:17 hello
rwxrxrx 1 arm root 13682 7 月 3 15:13 hello1
标签:strong lin str rip 信息 使用 bsp 原来 arm
原文地址:https://www.cnblogs.com/fanweisheng/p/11105607.html