strippingagain.xml 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. <sect1 id="ch-system-strippingagain">
  8. <?dbhtml filename="strippingagain.html"?>
  9. <title>Stripping Again</title>
  10. <para>This section is optional. If the intended user is not a
  11. programmer and does not plan to do
  12. any debugging on the system software, the system size can be decreased
  13. by about 90 MB by removing the debugging symbols from binaries and
  14. libraries. This causes no inconvenience other than not being able to
  15. debug the software fully anymore.</para>
  16. <para>Most people who use the commands mentioned below do not
  17. experience any difficulties. However, it is easy to make a typo and
  18. render the new system unusable, so before running the
  19. <command>strip</command> commands, it is a good idea to make a
  20. backup of the LFS system in its current state.</para>
  21. <para>First place the debugging symbols for selected libraries
  22. in separate files. This debugging information is needed if running
  23. regression tests that use <ulink
  24. url='&blfs-book;/general/valgrind.html'>valgrind</ulink> or <ulink
  25. url='&blfs-book;/general/gdb.html'>gdb</ulink> later in BLFS.
  26. </para>
  27. <!-- also of interest are libgfortan, libgo, libgomp, and libobjc from gcc -->
  28. <!--<screen><userinput>save_lib="ld-2.25.so libc-2.25.so libpthread-2.25.so libthread_db-1.0.so"-->
  29. <screen><userinput>save_lib="ld-&glibc-version;.so libc-&glibc-version;.so libpthread-&glibc-version;.so libthread_db-&libthread_db-version;.so"
  30. cd /lib
  31. for LIB in $save_lib; do
  32. objcopy --only-keep-debug $LIB $LIB.dbg
  33. strip --strip-unneeded $LIB
  34. objcopy --add-gnu-debuglink=$LIB.dbg $LIB
  35. done
  36. save_usrlib="libquadmath.so.&libquadmath-version; libstdc++.so.&libstdcpp-version;
  37. libitm.so.&libitm-version; libatomic.so.&libatomic-version;" <!-- libcilkrts.so.&libcilkrts-version;-->
  38. cd /usr/lib
  39. for LIB in $save_usrlib; do
  40. objcopy --only-keep-debug $LIB $LIB.dbg
  41. strip --strip-unneeded $LIB
  42. objcopy --add-gnu-debuglink=$LIB.dbg $LIB
  43. done
  44. unset LIB save_lib save_usrlib</userinput></screen>
  45. <para>Before performing the stripping, take special care to ensure that
  46. none of the binaries that are about to be stripped are running:</para>
  47. <screen role="nodump"><userinput>exec /tools/bin/bash</userinput></screen>
  48. <!--
  49. If
  50. unsure whether the user entered chroot with the command given in
  51. <xref linkend="ch-system-chroot" role=","/> first use the version
  52. of bash we created in
  53. chroot:</para>
  54. <screen role="nodump"><userinput>logout</userinput></screen>
  55. <para>Then reenter it with:</para>
  56. <screen role="nodump"><userinput>chroot $LFS /tools/bin/env -i \
  57. HOME=/root TERM=$TERM \
  58. PS1='(lfs chroot) \u:\w\$ ' \
  59. PATH=/bin:/usr/bin:/sbin:/usr/sbin \
  60. /tools/bin/bash - -login</userinput></screen>-->
  61. <para>Now the binaries and libraries can be safely stripped:</para>
  62. <screen><userinput>/tools/bin/find /usr/lib -type f -name \*.a \
  63. -exec /tools/bin/strip --strip-debug {} ';'
  64. /tools/bin/find /lib /usr/lib -type f \( -name \*.so* -a ! -name \*dbg \) \
  65. -exec /tools/bin/strip --strip-unneeded {} ';'
  66. /tools/bin/find /{bin,sbin} /usr/{bin,sbin,libexec} -type f \
  67. -exec /tools/bin/strip --strip-all {} ';'</userinput></screen>
  68. <para>A large number of files will be reported as having their file
  69. format not recognized. These warnings can be safely ignored. These
  70. warnings indicate that those files are scripts instead of
  71. binaries.</para>
  72. </sect1>