source: chapter05/glibc.xml@ f5e6d97

Last change on this file since f5e6d97 was 07c7a8d, checked in by Manuel Canales Esparcia <manuel@…>, 20 years ago

Updated multi-arch to testing r4493.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/multi-arch/BOOK@4495 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 9.7 KB
Line 
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
10<indexterm zone="ch-tools-glibc">
11<primary sortas="a-Glibc">Glibc</primary>
12<secondary>tools</secondary></indexterm>
13
14<sect2 role="package"><title/>
15<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="../chapter06/glibc.xml" xpointer="xpointer(/sect1/sect2[1]/para[1])"/>
16
17<segmentedlist>
18<segtitle>&buildtime;</segtitle>
19<segtitle>&diskspace;</segtitle>
20<seglistitem><seg>11.8 SBU</seg><seg>800 MB</seg></seglistitem>
21</segmentedlist>
22
23<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="../chapter06/glibc.xml" xpointer="xpointer(/sect1/sect2[1]/segmentedlist[2])"/>
24
25</sect2>
26
27<sect2 role="installation">
28<title>Installation of Glibc</title>
29
30<para>This package is known to have issues when its default
31optimization flags (including the <parameter>-march</parameter> and
32<parameter>-mcpu</parameter> options) are changed. If any environment
33variables that override default optimizations have been defined, such
34as <envar>CFLAGS</envar> and <envar>CXXFLAGS</envar>,
35unset them when building Glibc.</para>
36
37<para>It should be noted that compiling Glibc in any way other than
38the method suggested in this book puts the stability of the system at
39risk.</para>
40
41<para arch="raq2">NPTL is not supported under the MIPS architecture, so we are going to
42remove the nptl directory from the Glibc source:</para>
43
44<screen arch="raq2"><userinput>rm -rf nptl*</userinput></screen>
45
46<para arch="ppc">NPTL is not supported under the PPC architecture, so we are going to
47remove the nptl directory from the Glibc source:</para>
48
49<screen arch="ppc"><userinput>rm -rf nptl*</userinput></screen>
50
51<para arch="raq2">This patch fixes a librt linking issue.</para>
52
53<screen arch="raq2"><userinput>patch -Np1 -i ../glibc-&glibc-version;-raq2_librt_linking-1.patch</userinput></screen>
54
55<para arch="raq2">This patch contains all the necessary patches for RaQ2 server.</para>
56
57<screen arch="raq2"><userinput>patch -Np1 -i ../glibc-&glibc-version;-raq2_fixes-1.patch</userinput></screen>
58
59<para>The Glibc documentation recommends building Glibc outside of the source
60directory in a dedicated build directory:</para>
61
62<screen><userinput>mkdir ../glibc-build
63cd ../glibc-build</userinput></screen>
64
65<para>Next, prepare Glibc for compilation:</para>
66
67<screen><userinput>../glibc-&glibc-version;/configure --prefix=/tools \
68 --disable-profile --enable-add-ons \
69 --enable-kernel=2.6.0 --with-binutils=/tools/bin \
70 --without-gd --without-cvs --with-headers=/tools/include \
71 --disable-selinux</userinput></screen>
72
73<beginpage/>
74<para>The meaning of the configure options:</para>
75
76<variablelist>
77<varlistentry>
78<term><parameter>--disable-profile</parameter></term>
79<listitem><para>This builds the libraries without profiling
80information. Omit this option if profiling on the temporary tools is
81necessary.</para></listitem>
82</varlistentry>
83
84<varlistentry>
85<term><parameter>--enable-add-ons</parameter></term>
86<listitem><para>This tells Glibc to use the NPTL add-on as its threading
87library.</para></listitem>
88</varlistentry>
89
90<varlistentry>
91<term><parameter>--enable-kernel=2.6.0</parameter></term>
92<listitem><para>This tells Glibc to compile the library with support
93for 2.6.x Linux kernels.</para></listitem>
94</varlistentry>
95
96<varlistentry>
97<term><parameter>--with-binutils=/tools/bin</parameter></term>
98<listitem><para>While not required, this switch ensures that there are
99no errors pertaining to which Binutils programs get used during the
100Glibc build.</para></listitem>
101</varlistentry>
102
103<varlistentry>
104<term><parameter>--without-gd</parameter></term>
105<listitem><para>This prevents the build of the
106<command>memusagestat</command> program, which insists on linking
107against the host's libraries (libgd, libpng, libz,
108etc.).</para></listitem>
109</varlistentry>
110
111<varlistentry>
112<term><parameter>--without-cvs</parameter></term>
113<listitem><para>This prevents the Makefile files from
114attempting automatic CVS checkouts when using a CVS snapshot. While
115this command is not required, it is recommended because it suppresses
116an annoying, but harmless, warning about a missing autoconf
117program.</para></listitem>
118</varlistentry>
119
120<varlistentry>
121<term><parameter>--with-headers=/tools/include</parameter></term>
122<listitem><para>This tells Glibc to compile itself against the headers recently
123installed to the tools directory, so that it knows exactly what features the
124kernel has and can optimize itself accordingly.</para></listitem>
125</varlistentry>
126
127<!-- Edit Me -->
128<varlistentry>
129<term><parameter>--disable-selinux</parameter></term>
130<listitem><para>When building from hosts using SELinux functionality
131(i.e. Fedora Core 3), glibc will try to integrate this functionality into
132itself, but will fail, because we do not have this functionality in the LFS
133tools enviornment. This option will disable this, allowing glibc to build
134correctly, but will not otherwise affect the build.</para></listitem>
135</varlistentry>
136<!-- -->
137</variablelist>
138
139<beginpage/>
140<para>During this stage the following warning might appear:</para>
141
142<blockquote><screen><computeroutput>configure: WARNING:
143*** These auxiliary programs are missing or
144*** incompatible versions: msgfmt
145*** some features will be disabled.
146*** Check the INSTALL file for required versions.</computeroutput></screen></blockquote>
147
148<para>The missing or incompatible <command>msgfmt</command> program is
149generally harmless, but it can sometimes cause issues when running the
150test suite. This <command>msgfmt</command> program is part of the
151Gettext package which the host distribution should provide. If
152<command>msgfmt</command> is present but deemed incompatible, upgrade
153the host system's Gettext package or continue without it and see if
154the test suite runs without problems regardless.</para>
155
156<para>Compile the package:</para>
157
158<screen><userinput>make</userinput></screen>
159
160<para>Compilation is now complete. As mentioned earlier, running the
161test suites for the temporary tools installed in this chapter is not
162mandatory. To run the Glibc test suite (if desired), the following
163command will do so:</para>
164
165<screen><userinput>make check</userinput></screen>
166
167<para>For a discussion of test failures that are of particular
168importance, please see <xref linkend="ch-system-glibc" role="."/></para>
169
170<para>In this chapter, some tests can be adversely effected by
171existing tools or environmental issues on the host system. Glibc test
172suite failures in this chapter are typically not worrisome. The Glibc
173installed in <xref linkend="chapter-building-system"/> is the one that
174will ultimately end up being used, so that is the one that needs to pass
175most tests (even in <xref linkend="chapter-building-system"/>, some
176failures could still occur, for example, with the math tests).</para>
177
178<para>When experiencing a failure, make a note of it, then continue by
179reissuing the <command>make check</command> command. The test suite should pick up where it left
180off and continue. This stop-start sequence can be circumvented by
181issuing a <command>make -k check</command> command. If using this option, be sure to log the
182output so that the log file can be examined for failures later.</para>
183
184<beginpage/>
185<para>The install stage of Glibc will issue a harmless warning at the
186end about the absence of <filename>/tools/etc/ld.so.conf</filename>.
187Prevent this warning with:</para>
188
189<screen><userinput>mkdir /tools/etc
190touch /tools/etc/ld.so.conf</userinput></screen>
191
192<para>Install the package:</para>
193
194<screen><userinput>make install</userinput></screen>
195
196<para>Different countries and cultures have varying conventions for
197how to communicate. These conventions range from the format for
198representing dates and times to more complex issues, such as the
199language spoken. The <quote>internationalization</quote> of GNU
200programs works by locale.</para>
201
202<note><para>If the test suites are not being run in this chapter (as
203per the recommendation), there is no need to install the locales now.
204The appropriate locales will be installed in the next
205chapter.</para></note>
206
207<para>To install the Glibc locales anyway, use the following
208command:</para>
209
210<screen><userinput>make localedata/install-locales</userinput></screen>
211
212<beginpage/>
213<para>To save time, an alternative to running the
214previous command (which generates and installs every locale Glibc is
215aware of) is to install only those locales that are wanted and needed.
216This can be achieved by using the <command>localedef</command>
217command. Information on this command is located in the
218<filename>INSTALL</filename> file in the Glibc source. However, there
219are a number of locales that are essential in order for the tests of
220future packages to pass, in particular, the
221<emphasis>libstdc++</emphasis> tests from GCC. The following
222instructions, instead of the <parameter>install-locales</parameter>
223target used above, will install the minimum set of locales necessary
224for the tests to run successfully:</para>
225
226<screen><userinput>mkdir -p /tools/lib/locale
227localedef -i de_DE -f ISO-8859-1 de_DE
228localedef -i de_DE@euro -f ISO-8859-15 de_DE@euro
229localedef -i en_HK -f ISO-8859-1 en_HK
230localedef -i en_PH -f ISO-8859-1 en_PH
231localedef -i en_US -f ISO-8859-1 en_US
232localedef -i es_MX -f ISO-8859-1 es_MX
233localedef -i fa_IR -f UTF-8 fa_IR
234localedef -i fr_FR -f ISO-8859-1 fr_FR
235localedef -i fr_FR@euro -f ISO-8859-15 fr_FR@euro
236localedef -i it_IT -f ISO-8859-1 it_IT
237localedef -i ja_JP -f EUC-JP ja_JP</userinput></screen>
238
239</sect2>
240
241<sect2 role="content"><title/>
242<para>Details on this package are located in <xref
243linkend="contents-glibc" role="."/></para>
244</sect2>
245
246</sect1>
247
Note: See TracBrowser for help on using the repository browser.