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

Merge pull request #147 from NixOS/improve-strip

Paraphrase utility of strip
This commit is contained in:
Michele Guerini Rocco 2020-06-05 09:57:33 +02:00 committed by GitHub
commit f280712c42
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -149,9 +149,12 @@
</para> </para>
<para> <para>
Even after reducing the rpath the hello binary would still depend Even after reducing the rpath, the hello binary would still
upon gcc. This is because of debugging information. To fix is the well depend upon gcc because of some debugging information. This
known <command>strip</command> can be used. 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> </para>
</section> </section>