source: chapter06/strippingagain.xml@ 00abb8f

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 00abb8f was 00abb8f, checked in by Bruce Dubbs <bdubbs@…>, 7 years ago

Move library versions for presevation of debugging symbols
to packages.ent.

Update to linux-4.11.1.
Update to shadow-4.5.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11253 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 3.5 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="ch-system-strippingagain">
9 <?dbhtml filename="strippingagain.html"?>
10
11 <title>Stripping Again</title>
12
13 <para>This section is optional. If the intended user is not a
14 programmer and does not plan to do
15 any debugging on the system software, the system size can be decreased
16 by about 90 MB by removing the debugging symbols from binaries and
17 libraries. This causes no inconvenience other than not being able to
18 debug the software fully anymore.</para>
19
20 <para>Most people who use the commands mentioned below do not
21 experience any difficulties. However, it is easy to make a typo and
22 render the new system unusable, so before running the
23 <command>strip</command> commands, it is a good idea to make a
24 backup of the LFS system in its current state.</para>
25
26 <para>First place the debugging symbols for selected libraries
27 in separate files. This debugging information is needed if running
28 regression tests that use <ulink
29 url='&blfs-book;/general/valgrind.html'>valgrind</ulink> or <ulink
30 url='&blfs-book;/general/gdb.html'>gdb</ulink> later in BLFS.
31 </para>
32
33<!-- also of interest are libgfortan, libgo, libgomp, and libobjc from gcc -->
34
35<!--<screen><userinput>save_lib="ld-2.25.so libc-2.25.so libpthread-2.25.so libthread_db-1.0.so"-->
36<screen><userinput>save_lib="ld-&glibc-version;.so libc-&glibc-version;.so libpthread-&glibc-version;.so libthread_db-&libthread_db-version;.so"
37
38cd /lib
39
40for LIB in $save_lib; do
41 objcopy --only-keep-debug $LIB $LIB.dbg
42 strip --strip-unneeded $LIB
43 objcopy --add-gnu-debuglink=$LIB.dbg $LIB
44done
45
46save_usrlib="libquadmath.so.&libquadmath-version; libstdc++.so.&libstdcpp-version;
47 libmpx.so.&libmpx-version; libmpxwrappers.so.&libmpxwrap-version; libitm.so.&libitm-version;
48 libcilkrts.so.&libcilkrts-version; libatomic.so.&libatomic-version;"
49
50cd /usr/lib
51
52for LIB in $save_usrlib; do
53 objcopy --only-keep-debug $LIB $LIB.dbg
54 strip --strip-unneeded $LIB
55 objcopy --add-gnu-debuglink=$LIB.dbg $LIB
56done
57
58unset LIB save_lib save_usrlib</userinput></screen>
59
60 <para>Before performing the stripping, take special care to ensure that
61 none of the binaries that are about to be stripped are running. If
62 unsure whether the user entered chroot with the command given in
63 <xref linkend="ch-system-chroot" role=","/> first exit from
64 chroot:</para>
65
66<screen role="nodump"><userinput>logout</userinput></screen>
67
68 <para>Then reenter it with:</para>
69
70<screen role="nodump"><userinput>chroot $LFS /tools/bin/env -i \
71 HOME=/root TERM=$TERM PS1='\u:\w\$ ' \
72 PATH=/bin:/usr/bin:/sbin:/usr/sbin \
73 /tools/bin/bash --login</userinput></screen>
74
75 <para>Now the binaries and libraries can be safely stripped:</para>
76
77<screen><userinput>/tools/bin/find /usr/lib -type f -name \*.a \
78 -exec /tools/bin/strip --strip-debug {} ';'
79
80/tools/bin/find /lib /usr/lib -type f \( -name \*.so* -a ! -name \*dbg \) \
81 -exec /tools/bin/strip --strip-unneeded {} ';'
82
83/tools/bin/find /{bin,sbin} /usr/{bin,sbin,libexec} -type f \
84 -exec /tools/bin/strip --strip-all {} ';'</userinput></screen>
85
86 <para>A large number of files will be reported as having their file
87 format not recognized. These warnings can be safely ignored. These
88 warnings indicate that those files are scripts instead of
89 binaries.</para>
90
91</sect1>
Note: See TracBrowser for help on using the repository browser.