Changeset fd4792b for chapter08/stripping.xml
- Timestamp:
- 08/21/2022 09:27:38 PM (2 years ago)
- Branches:
- multilib, xry111/multilib
- Children:
- f8a51225
- Parents:
- 9282602 (diff), fd6f71b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
chapter08/stripping.xml
r9282602 rfd4792b 14 14 programmer and does not plan to do 15 15 any debugging on the system software, the system size can be decreased 16 by about 2 GB by removing the debugging symbols from binaries and17 libraries. This causes no inconvenience other than not being able to18 debug the software fully anymore.</para>16 by about 2 GB by removing the debugging symbols and unneeded symbol table 17 entries from binaries and libraries. This causes no inconvenience other 18 than not being able to debug the software fully anymore.</para> 19 19 20 20 <para>Most people who use the commands mentioned below do not … … 23 23 <command>strip</command> commands, it is a good idea to make a 24 24 backup of the LFS system in its current state.</para> 25 26 <para>A <command>strip</command> command with 27 <parameter>--strip-unneeded</parameter> option removes all debug symbols 28 from a binary or library. And, it removes all symbol table entries not 29 needed by the linker (for static libraries) or dynamic linker (for 30 dynamic-linked binaries and shared libraries).</para> 25 31 26 32 <para>The debugging symbols for selected libraries are placed
Note:
See TracChangeset
for help on using the changeset viewer.