glibc.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
  3. <!ENTITY % general-entities SYSTEM "../general.ent">
  4. %general-entities;
  5. ]>
  6. <sect1 id="ch-tools-glibc" role="wrap">
  7. <title>Glibc-&glibc-version;</title>
  8. <?dbhtml filename="glibc.html"?>
  9. <sect2 role="package"><title/>
  10. <segmentedlist>
  11. <segtitle>&buildtime;</segtitle>
  12. <segtitle>&diskspace;</segtitle>
  13. <seglistitem><seg>11.8 SBU</seg><seg>800 MB</seg></seglistitem>
  14. </segmentedlist>
  15. </sect2>
  16. <sect2 role="installation">
  17. <title>Installation of Glibc</title>
  18. <para>Create a build dir:</para>
  19. <screen><userinput>mkdir ../glibc-build
  20. cd ../glibc-build</userinput></screen>
  21. <para>Next, prepare Glibc for compilation:</para>
  22. <screen><userinput>../glibc-&glibc-version;/configure --prefix=/tools \
  23. --disable-profile --enable-add-ons \
  24. --enable-kernel=2.6.0 --with-binutils=/tools/bin \
  25. --without-gd --without-cvs --with-headers=/tools/include \
  26. --disable-selinux</userinput></screen>
  27. <para>Compile the package:</para>
  28. <screen><userinput>make</userinput></screen>
  29. <para>Test the results:</para>
  30. <screen><userinput>make check</userinput></screen>
  31. <para>For a discussion of test failures that are of particular
  32. importance, please see <xref linkend="ch-system-glibc"/>.</para>
  33. <screen><userinput>mkdir /tools/etc
  34. touch /tools/etc/ld.so.conf</userinput></screen>
  35. <para>Now install the package:</para>
  36. <screen><userinput>make install</userinput></screen>
  37. <para>To install the Glibc locales, use the following
  38. command:</para>
  39. <screen><userinput>make localedata/install-locales</userinput></screen>
  40. <para>An alternative to running the previous command is to install only those
  41. locales which you need or want. The following instructions, instead of the
  42. install-locales target above, will install the minimum set of locales necessary
  43. for the tests to run successfully:</para>
  44. <screen><userinput>mkdir -p /tools/lib/locale
  45. localedef -i de_DE -f ISO-8859-1 de_DE
  46. localedef -i de_DE@euro -f ISO-8859-15 de_DE@euro
  47. localedef -i en_HK -f ISO-8859-1 en_HK
  48. localedef -i en_PH -f ISO-8859-1 en_PH
  49. localedef -i en_US -f ISO-8859-1 en_US
  50. localedef -i es_MX -f ISO-8859-1 es_MX
  51. localedef -i fa_IR -f UTF-8 fa_IR
  52. localedef -i fr_FR -f ISO-8859-1 fr_FR
  53. localedef -i fr_FR@euro -f ISO-8859-15 fr_FR@euro
  54. localedef -i it_IT -f ISO-8859-1 it_IT
  55. localedef -i ja_JP -f EUC-JP ja_JP</userinput></screen>
  56. </sect2>
  57. </sect1>