glibc.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/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. <indexterm zone="ch-tools-glibc">
  10. <primary sortas="a-Glibc">Glibc</primary>
  11. <secondary>tools</secondary></indexterm>
  12. <sect2 role="package"><title/>
  13. <segmentedlist>
  14. <segtitle>&buildtime;</segtitle>
  15. <segtitle>&diskspace;</segtitle>
  16. <seglistitem><seg>11.8 SBU</seg><seg>800 MB</seg></seglistitem>
  17. </segmentedlist>
  18. </sect2>
  19. <sect2 role="installation">
  20. <title>Installation of Glibc</title>
  21. <screen><userinput>mkdir ../glibc-build
  22. cd ../glibc-build</userinput></screen>
  23. <para>Next, prepare Glibc for compilation:</para>
  24. <screen><userinput>../glibc-&glibc-version;/configure --prefix=/tools \
  25. --disable-profile --enable-add-ons \
  26. --enable-kernel=2.6.0 --with-binutils=/tools/bin \
  27. --without-gd --without-cvs --with-headers=/tools/include</userinput></screen>
  28. <para>Compile the package:</para>
  29. <screen><userinput>make</userinput></screen>
  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>