blob: 2550b729f5b01b0df34ba8e4c1b2244dd09f395c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
<sect1 id="ch06-aboutdebug">
<title>About debugging symbols</title>
<para>
Most programs and libraries by default are compiled with debugging
symbols (gcc option -g) Let me explain what these debugging symbols
are and why you may not want them.
</para>
<para>
A program compiled with debugging symbols means a user can run a program or
library through a debugger and the debugger's output will be user
friendly. These debugging symbols also enlarge the program or library
significantly.
</para>
<para>
Before you start wondering whether these debugging symbols really make a
big difference, here are some statistics. Use them to draw your own
conclusion.
</para>
<itemizedlist>
<listitem><para>
A dynamic Bash binary with debugging symbols: 1.2MB
</para></listitem>
<listitem><para>
A dynamic Bash binary without debugging symbols: 478KB
</para></listitem>
<listitem><para>
/lib and /usr/lib (glibc and gcc files) with debugging
symbols: 87MB
</para></listitem>
<listitem><para>
/lib and /usr/lib (glibc and gcc files) without
debugging symbols: 16MB
</para></listitem>
</itemizedlist>
<para>
Sizes vary depending on which compiler was used and which C library
version was used to link dynamic programs against, but results will be
similar if you compare programs with and without debugging symbols. After
I was done with this chapter and stripped all debugging symbols from all LFS
binaries I regained a little over 102 MB of disk space. Quite the difference.
</para>
<para>
To remove debugging symbols from a binary (must be an a.out or ELF
binary) run <userinput>strip --strip-debug filename</userinput>. Wild cards
can be used to strip debugging symbols from multiple files (use something
like <userinput>strip --strip-debug $LFS/usr/bin/*</userinput>).
Most people will probably never use a debugger on software, so by
removing those symbols a lot of diskspace can be regained.
</para>
</sect1>
|