glibc.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. <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. <screen><userinput>mkdir ../glibc-build
  19. cd ../glibc-build</userinput></screen>
  20. <para>Next, prepare Glibc for compilation:</para>
  21. <screen><userinput>../glibc-&glibc-version;/configure --prefix=/tools \
  22. --disable-profile --enable-add-ons \
  23. --enable-kernel=2.6.0 --with-binutils=/tools/bin \
  24. --without-gd --without-cvs --with-headers=/tools/include</userinput></screen>
  25. <para>Compile the package:</para>
  26. <screen><userinput>make</userinput></screen>
  27. <screen><userinput>make check</userinput></screen>
  28. <para>For a discussion of test failures that are of particular
  29. importance, please see <xref linkend="ch-system-glibc"/>.</para>
  30. <screen><userinput>mkdir /tools/etc
  31. touch /tools/etc/ld.so.conf</userinput></screen>
  32. <para>Now install the package:</para>
  33. <screen><userinput>make install</userinput></screen>
  34. <para>To install the Glibc locales, use the following
  35. command:</para>
  36. <screen><userinput>make localedata/install-locales</userinput></screen>
  37. <para>An alternative to running the previous command is to install only those
  38. locales which you need or want. The following instructions, instead of the
  39. install-locales target above, will install the minimum set of locales necessary
  40. for the tests to run successfully:</para>
  41. <screen><userinput>mkdir -p /tools/lib/locale
  42. localedef -i de_DE -f ISO-8859-1 de_DE
  43. localedef -i de_DE@euro -f ISO-8859-15 de_DE@euro
  44. localedef -i en_HK -f ISO-8859-1 en_HK
  45. localedef -i en_PH -f ISO-8859-1 en_PH
  46. localedef -i en_US -f ISO-8859-1 en_US
  47. localedef -i es_MX -f ISO-8859-1 es_MX
  48. localedef -i fa_IR -f UTF-8 fa_IR
  49. localedef -i fr_FR -f ISO-8859-1 fr_FR
  50. localedef -i fr_FR@euro -f ISO-8859-15 fr_FR@euro
  51. localedef -i it_IT -f ISO-8859-1 it_IT
  52. localedef -i ja_JP -f EUC-JP ja_JP</userinput></screen>
  53. </sect2>
  54. </sect1>