glibc-exp.sgml 853 B

1234567891011121314151617181920212223242526272829
  1. <sect2>
  2. <title>Command explanations</title>
  3. <para>
  4. <userinput>patch -Np1 -i ../glibc-2.1.3.patch:</userinput> This applies
  5. a patch that fixes a minor bug in Glibc. Glibc defines a few variables
  6. names with illegal characters in the name. Bash-2.03 and older don't
  7. complain about that but Bash-2.04 does and won't compile Glibc properly.
  8. </para>
  9. <para>
  10. <userinput>--enable-add-ons:</userinput> This enabled the add-ons that
  11. we install with Glibc: linuxthreads and crypt.
  12. </para>
  13. <para>
  14. <userinput>--with-headers=$LFS/usr/include:</userinput> This makes Glibc
  15. use the kernel header files on our LFS system and not the kernel header
  16. files from your starting distribution which may be out-of-date or
  17. modified.
  18. </para>
  19. <para>
  20. <userinput>make install_root=$LFS:</userinput> This is the Glibc way to
  21. specify the equivalent of --prefix=.
  22. </para>
  23. </sect2>