source: chapter05/glibc.xml@ e747759

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.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 e747759 was e747759, checked in by Manuel Canales Esparcia <manuel@…>, 17 years ago

Added sect1info blocks to packages pages.

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

  • Property mode set to 100644
File size: 7.5 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="ch-tools-glibc" role="wrap">
9 <?dbhtml filename="glibc.html"?>
10
11 <sect1info condition="script">
12 <productname>glibc</productname>
13 <productnumber>&glibc-version;</productnumber>
14 <address>&glibc-url;</address>
15 </sect1info>
16
17 <title>Glibc-&glibc-version;</title>
18
19 <indexterm zone="ch-tools-glibc">
20 <primary sortas="a-Glibc">Glibc</primary>
21 <secondary>tools</secondary>
22 </indexterm>
23
24 <sect2 role="package">
25 <title/>
26
27 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
28 href="../chapter06/glibc.xml"
29 xpointer="xpointer(/sect1/sect2[1]/para[1])"/>
30
31 <segmentedlist>
32 <segtitle>&buildtime;</segtitle>
33 <segtitle>&diskspace;</segtitle>
34
35 <seglistitem>
36 <seg>&glibc-ch5-sbu;</seg>
37 <seg>&glibc-ch5-du;</seg>
38 </seglistitem>
39 </segmentedlist>
40
41 </sect2>
42
43 <sect2 role="installation">
44 <title>Installation of Glibc</title>
45
46 <para>The Glibc documentation recommends building Glibc outside of the source
47 directory in a dedicated build directory:</para>
48
49<screen><userinput>mkdir -v ../glibc-build
50cd ../glibc-build</userinput></screen>
51
52 <para>Next, prepare Glibc for compilation:</para>
53
54<screen><userinput>../glibc-&glibc-version;/configure --prefix=/tools \
55 --disable-profile --enable-add-ons \
56 --enable-kernel=2.6.0 --with-binutils=/tools/bin \
57 --without-gd --with-headers=/tools/include \
58 --without-selinux</userinput></screen>
59
60 <variablelist>
61 <title>The meaning of the configure options:</title>
62
63 <varlistentry>
64 <term><parameter>--disable-profile</parameter></term>
65 <listitem>
66 <para>This builds the libraries without profiling information. Omit
67 this option if profiling on the temporary tools is necessary.</para>
68 </listitem>
69 </varlistentry>
70
71 <varlistentry>
72 <term><parameter>--enable-add-ons</parameter></term>
73 <listitem>
74 <para>This tells Glibc to use the NPTL add-on as its threading
75 library.</para>
76 </listitem>
77 </varlistentry>
78
79 <varlistentry>
80 <term><parameter>--enable-kernel=2.6.0</parameter></term>
81 <listitem>
82 <para>This tells Glibc to compile the library with support
83 for 2.6.x Linux kernels.</para>
84 </listitem>
85 </varlistentry>
86
87 <varlistentry>
88 <term><parameter>--with-binutils=/tools/bin</parameter></term>
89 <listitem>
90 <para>While not required, this switch ensures that there are
91 no errors pertaining to which Binutils programs get used during the
92 Glibc build.</para>
93 </listitem>
94 </varlistentry>
95
96 <varlistentry>
97 <term><parameter>--without-gd</parameter></term>
98 <listitem>
99 <para>This prevents the build of the <command>memusagestat</command>
100 program, which insists on linking against the host's libraries
101 (libgd, libpng, libz, etc.).</para>
102 </listitem>
103 </varlistentry>
104
105 <varlistentry>
106 <term><parameter>--with-headers=/tools/include</parameter></term>
107 <listitem>
108 <para>This tells Glibc to compile itself against the headers recently
109 installed to the tools directory, so that it knows exactly what
110 features the kernel has and can optimize itself accordingly.</para>
111 </listitem>
112 </varlistentry>
113
114 <varlistentry>
115 <term><parameter>--without-selinux</parameter></term>
116 <listitem>
117 <para>When building from hosts that include SELinux functionality
118 (e.g., Fedora Core 3), Glibc will build with support for SELinux.
119 As the LFS tools environment does not contain support for SELinux, a
120 Glibc compiled with such support will fail to operate correctly.</para>
121 </listitem>
122 </varlistentry>
123
124 </variablelist>
125
126 <para>During this stage the following warning might appear:</para>
127
128 <blockquote>
129<screen><computeroutput>configure: WARNING:
130*** These auxiliary programs are missing or
131*** incompatible versions: msgfmt
132*** some features will be disabled.
133*** Check the INSTALL file for required versions.</computeroutput></screen>
134 </blockquote>
135
136 <para>The missing or incompatible <command>msgfmt</command> program is
137 generally harmless, but it can sometimes cause issues when running the
138 test suite. This <command>msgfmt</command> program is part of the
139 Gettext package which the host distribution should provide. If
140 <command>msgfmt</command> is present but deemed incompatible, upgrade
141 the host system's Gettext package or continue without it and see if
142 the test suite runs without problems regardless.</para>
143
144 <para>Compile the package:</para>
145
146<screen><userinput>make</userinput></screen>
147
148 <para>Compilation is now complete. As mentioned earlier, running the
149 test suites for the temporary tools installed in this chapter is not
150 mandatory. To run the Glibc test suite (if desired), the following
151 command will do so:</para>
152
153<screen><userinput>make check</userinput></screen>
154
155 <para>For a discussion of test failures that are of particular
156 importance, please see <xref linkend="ch-system-glibc" role="."/></para>
157
158 <para>In this chapter, some tests can be adversely affected by
159 existing tools or environmental issues on the host system. Glibc test
160 suite failures in this chapter are typically not worrisome. The Glibc
161 installed in <xref linkend="chapter-building-system"/> is the one that
162 will ultimately end up being used, so that is the one that needs to pass
163 most tests (even in <xref linkend="chapter-building-system"/>, some
164 failures could still occur, for example, with the math tests).</para>
165
166 <para>When experiencing a failure, make a note of it, then continue by
167 reissuing the <command>make check</command> command. The test suite
168 should pick up where it left off and continue. This stop-start sequence
169 can be circumvented by issuing a <command>make -k check</command> command.
170 If using this option, be sure to log the output so that the log file can
171 be examined for failures later.</para>
172
173 <para>The install stage of Glibc will issue a harmless warning at the
174 end about the absence of <filename>/tools/etc/ld.so.conf</filename>.
175 Prevent this warning with:</para>
176
177<screen><userinput>mkdir -v /tools/etc
178touch /tools/etc/ld.so.conf</userinput></screen>
179
180 <para>Install the package:</para>
181
182<screen><userinput>make install</userinput></screen>
183
184 <para>Different countries and cultures have varying conventions for
185 how to communicate. These conventions range from the format for
186 representing dates and times to more complex issues, such as the
187 language spoken. The <quote>internationalization</quote> of GNU
188 programs works by locale.</para>
189
190 <note>
191 <para>If the test suites are not being run in this chapter (as per
192 the recommendation), there is no need to install the locales now.
193 The appropriate locales will be installed in the next chapter.
194 To install the Glibc locales anyway, use instructions from
195 <xref linkend="ch-system-glibc" role="."/></para>
196 </note>
197
198 </sect2>
199
200 <sect2 role="content">
201 <title/>
202
203 <para>Details on this package are located in
204 <xref linkend="contents-glibc" role="."/></para>
205
206 </sect2>
207
208</sect1>
Note: See TracBrowser for help on using the repository browser.