source: chapter05/glibc.xml@ fa21b3d

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 6.3 6.4 6.5 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since fa21b3d was fa21b3d, checked in by Jeremy Huntwork <jhuntwork@…>, 18 years ago

Initial support of UTF-8. Thanks Alexander Patrakov.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7245 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 6.6 KB
Line 
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
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>454 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>The Glibc documentation recommends building Glibc outside of the source
31directory in a dedicated build directory:</para>
32
33<screen><userinput>mkdir -v ../glibc-build
34cd ../glibc-build</userinput></screen>
35
36<para>Next, prepare Glibc for compilation:</para>
37
38<screen><userinput>../glibc-&glibc-version;/configure --prefix=/tools \
39 --disable-profile --enable-add-ons \
40 --enable-kernel=2.6.0 --with-binutils=/tools/bin \
41 --without-gd --with-headers=/tools/include \
42 --without-selinux</userinput></screen>
43
44<para>The meaning of the configure options:</para>
45
46<variablelist>
47<varlistentry>
48<term><parameter>--disable-profile</parameter></term>
49<listitem><para>This builds the libraries without profiling
50information. Omit this option if profiling on the temporary tools is
51necessary.</para></listitem>
52</varlistentry>
53
54<varlistentry>
55<term><parameter>--enable-add-ons</parameter></term>
56<listitem><para>This tells Glibc to use the NPTL add-on as its threading
57library.</para></listitem>
58</varlistentry>
59
60<varlistentry>
61<term><parameter>--enable-kernel=2.6.0</parameter></term>
62<listitem><para>This tells Glibc to compile the library with support
63for 2.6.x Linux kernels.</para></listitem>
64</varlistentry>
65
66<varlistentry>
67<term><parameter>--with-binutils=/tools/bin</parameter></term>
68<listitem><para>While not required, this switch ensures that there are
69no errors pertaining to which Binutils programs get used during the
70Glibc build.</para></listitem>
71</varlistentry>
72
73<varlistentry>
74<term><parameter>--without-gd</parameter></term>
75<listitem><para>This prevents the build of the
76<command>memusagestat</command> program, which insists on linking
77against the host's libraries (libgd, libpng, libz,
78etc.).</para></listitem>
79</varlistentry>
80
81<varlistentry>
82<term><parameter>--with-headers=/tools/include</parameter></term>
83<listitem><para>This tells Glibc to compile itself against the headers recently
84installed to the tools directory, so that it knows exactly what features the
85kernel has and can optimize itself accordingly.</para></listitem>
86</varlistentry>
87
88<varlistentry>
89<term><parameter>--without-selinux</parameter></term>
90<listitem><para>When building from hosts that include SELinux functionality
91(e.g., Fedora Core 3), Glibc will build with support for SELinux. As the LFS
92tools environment does not contain support for SELinux, a Glibc compiled with
93such support will fail to operate correctly.</para></listitem>
94</varlistentry>
95</variablelist>
96
97<para>During this stage the following warning might appear:</para>
98
99<blockquote><screen><computeroutput>configure: WARNING:
100*** These auxiliary programs are missing or
101*** incompatible versions: msgfmt
102*** some features will be disabled.
103*** Check the INSTALL file for required versions.</computeroutput></screen></blockquote>
104
105<para>The missing or incompatible <command>msgfmt</command> program is
106generally harmless, but it can sometimes cause issues when running the
107test suite. This <command>msgfmt</command> program is part of the
108Gettext package which the host distribution should provide. If
109<command>msgfmt</command> is present but deemed incompatible, upgrade
110the host system's Gettext package or continue without it and see if
111the test suite runs without problems regardless.</para>
112
113<para>Compile the package:</para>
114
115<screen><userinput>make</userinput></screen>
116
117<para>Compilation is now complete. As mentioned earlier, running the
118test suites for the temporary tools installed in this chapter is not
119mandatory. To run the Glibc test suite (if desired), the following
120command will do so:</para>
121
122<screen><userinput>make check</userinput></screen>
123
124<para>For a discussion of test failures that are of particular
125importance, please see <xref linkend="ch-system-glibc" role="."/></para>
126
127<para>In this chapter, some tests can be adversely affected by
128existing tools or environmental issues on the host system. Glibc test
129suite failures in this chapter are typically not worrisome. The Glibc
130installed in <xref linkend="chapter-building-system"/> is the one that
131will ultimately end up being used, so that is the one that needs to pass
132most tests (even in <xref linkend="chapter-building-system"/>, some
133failures could still occur, for example, with the math tests).</para>
134
135<para>When experiencing a failure, make a note of it, then continue by
136reissuing the <command>make check</command> command. The test suite should pick up where it left
137off and continue. This stop-start sequence can be circumvented by
138issuing a <command>make -k check</command> command. If using this option, be sure to log the
139output so that the log file can be examined for failures later.</para>
140
141<para>The install stage of Glibc will issue a harmless warning at the
142end about the absence of <filename>/tools/etc/ld.so.conf</filename>.
143Prevent this warning with:</para>
144
145<screen><userinput>mkdir -v /tools/etc
146touch /tools/etc/ld.so.conf</userinput></screen>
147
148<para>Install the package:</para>
149
150<screen><userinput>make install</userinput></screen>
151
152<para>Different countries and cultures have varying conventions for
153how to communicate. These conventions range from the format for
154representing dates and times to more complex issues, such as the
155language spoken. The <quote>internationalization</quote> of GNU
156programs works by locale.</para>
157
158<note><para>If the test suites are not being run in this chapter (as
159per the recommendation), there is no need to install the locales now.
160The appropriate locales will be installed in the next
161chapter. To install the Glibc locales anyway, use instructions from
162<xref linkend="ch-system-glibc" role="."/>
163</para></note>
164
165</sect2>
166
167<sect2 role="content"><title/>
168<para>Details on this package are located in <xref
169linkend="contents-glibc" role="."/></para>
170</sect2>
171
172</sect1>
173
Note: See TracBrowser for help on using the repository browser.