Software:strip (Unix)

From HandWiki
Revision as of 00:35, 9 December 2020 by imported>Nautica (update)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

strip
Developer(s)AT&T Bell Laboratories
Initial releaseJune 12, 1972; 51 years ago (1972-06-12)
Operating systemUnix and Unix-like, Microsoft Windows
TypeCommand

In Unix and Unix-like operating systems, the strip program removes inessential information from executable binary programs and object files, thus potentially resulting in better performance and sometimes significantly less disk space usage ('inessential information' means information that is not required for correct functioning of the binary in normal execution). This information may consist of debugging and symbol information; however the standard leaves the scope of changes up to the implementer.

Furthermore, the use of strip can improve the security of the binary against reverse engineering. It will be more difficult to analyze a binary without its information and object's names.

The effect of strip can be achieved directly by the linker. For instance, in GNU Compiler Collection this option is "-s".

The GNU Project ships an implementation of strip as part of the GNU Binutils package. strip has been ported to other operating systems including Microsoft Windows.

See also

References

External links