1
0
Fork 0
mirror of https://github.com/NixOS/nix-pills synced 2024-09-19 04:00:13 -04:00

Paraphrase utility of strip

This commit is contained in:
Dani 2020-05-09 13:46:28 +02:00 committed by Antoine Eiche
parent 2160c8645d
commit f6883c972a

View file

@ -149,9 +149,12 @@
</para>
<para>
Even after reducing the rpath the hello binary would still depend
upon gcc. This is because of debugging information. To fix is the well
known <command>strip</command> can be used.
Even after reducing the rpath, the hello binary would still
depend upon gcc because of some debugging information. This
unnecesarily increases the size of our runtime
dependencies. We'll explore how <command><link
xlink:href="https://linux.die.net/man/1/strip">strip</link>
</command> can help us with that in the next section.
</para>
</section>