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