diff --git a/chapter08/stripping.xml b/chapter08/stripping.xml
index 5ce0235d3..2839cfda7 100644
--- a/chapter08/stripping.xml
+++ b/chapter08/stripping.xml
@@ -24,10 +24,15 @@
backup of the LFS system in its current state.
A strip command with the
- --strip-unneeded option removes all debug symbols
- from a binary or library. It also removes all symbol table entries not
+ --strip-unneeded option removes all debug symbols from
+ a binary or library. It also removes all symbol table entries not normally
needed by the linker (for static libraries) or dynamic linker (for
- dynamically linked binaries and shared libraries).
+ dynamically linked binaries and shared libraries). Using
+ --strip-debug does not remove symbol table entries
+ that may be needed by some applications. The difference between "unneeded"
+ and "debug" is very small. For example, an unstripped libc.a is 22.4 MB.
+ After stripping with --strip-debug it is 5.9 MB. Using --strip-unneeded only
+ reduces the size further to only 5.8 MB.