source: chapter05/glibc.xml@ 9d5d854f

Last change on this file since 9d5d854f was 9d5d854f, checked in by Douglas R. Reno <renodr@…>, 8 years ago

Synced to trunk r11052

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/systemd@11053 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 8.6 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/2001/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>First, fix a build problem that affects i386 systems:</para>
47
48<screen><userinput remap="pre">patch -Np1 -i ../&glibc-upstream-patch;</userinput></screen>
49-->
50
51 <para>Fix some problems identified upstream:</para>
52
53<screen><userinput remap="pre">patch -Np1 -i ../&glibc-upstream-patch;</userinput></screen>
54
55 <para>The Glibc documentation recommends building Glibc
56 in a dedicated build directory:</para>
57
58<screen><userinput remap="pre">mkdir -v build
59cd build</userinput></screen>
60
61 <para>Next, prepare Glibc for compilation:</para>
62
63<screen><userinput remap="configure">../configure \
64 --prefix=/tools \
65 --host=$LFS_TGT \
66 --build=$(../scripts/config.guess) \
67 --enable-kernel=&min-kernel; \
68 --with-headers=/tools/include \
69 libc_cv_forced_unwind=yes \
70 libc_cv_ctors_header=yes \
71 libc_cv_c_cleanup=yes</userinput></screen>
72
73 <variablelist>
74 <title>The meaning of the configure options:</title>
75
76 <varlistentry>
77 <term><parameter>--host=$LFS_TGT, --build=$(../scripts/config.guess)</parameter></term>
78 <listitem>
79 <para>The combined effect of these switches is that Glibc's build system
80 configures itself to cross-compile, using the cross-linker and
81 cross-compiler in <filename class="directory">/tools</filename>.</para>
82 </listitem>
83 </varlistentry>
84
85<!--
86 <varlistentry>
87 <term><parameter>- -disable-profile</parameter></term>
88 <listitem>
89 <para>This builds the libraries without profiling information. Omit
90 this option if profiling on the temporary tools is necessary.</para>
91 </listitem>
92 </varlistentry>
93-->
94
95 <varlistentry>
96 <term><parameter>--enable-kernel=&min-kernel;</parameter></term>
97 <listitem>
98 <para>This tells Glibc to compile the library with support
99 for &min-kernel; and later Linux kernels. Workarounds for older
100 kernels are not enabled.</para>
101 </listitem>
102 </varlistentry>
103
104<!--
105 <varlistentry>
106 <term><parameter>- -enable-obsolete-rpc</parameter></term>
107 <listitem>
108 <para>This installs NIS and RPC related headers that are not
109 installed by default. They are required to build GCC and by
110 several BLFS packages.</para>
111 </listitem>
112 </varlistentry>
113-->
114
115 <varlistentry>
116 <term><parameter>--with-headers=/tools/include</parameter></term>
117 <listitem>
118 <para>This tells Glibc to compile itself against the headers recently
119 installed to the tools directory, so that it knows exactly what
120 features the kernel has and can optimize itself accordingly.</para>
121 </listitem>
122 </varlistentry>
123
124 <varlistentry>
125 <term><parameter>libc_cv_forced_unwind=yes</parameter></term>
126 <listitem>
127 <para>The linker installed during
128 <xref linkend="ch-tools-binutils-pass1"/> was cross-compiled and as
129 such cannot be used until Glibc has been installed. This means that
130 the configure test for force-unwind support will fail, as it relies on
131 a working linker. The libc_cv_forced_unwind=yes variable is passed in
132 order to inform <command>configure</command> that force-unwind
133 support is available without it having to run the test.</para>
134 </listitem>
135 </varlistentry>
136 <varlistentry>
137 <term><parameter>libc_cv_c_cleanup=yes</parameter></term>
138 <listitem>
139 <para>Similarly, we pass libc_cv_c_cleanup=yes through to the
140 <command>configure</command> script so that the test is skipped and C
141 cleanup handling support is configured.</para>
142 </listitem>
143 </varlistentry>
144 <varlistentry>
145 <term><parameter>libc_cv_ctors_header=yes</parameter></term>
146 <listitem>
147 <para>Similarly, we pass libc_cv_ctors_header=yes through to the
148 <command>configure</command> script so that the test is skipped and
149 gcc constructor support is configured.</para>
150 </listitem>
151 </varlistentry>
152
153 </variablelist>
154
155 <para>During this stage the following warning might appear:</para>
156
157 <blockquote>
158<screen><computeroutput>configure: WARNING:
159*** These auxiliary programs are missing or
160*** incompatible versions: msgfmt
161*** some features will be disabled.
162*** Check the INSTALL file for required versions.</computeroutput></screen>
163 </blockquote>
164
165 <para>The missing or incompatible <command>msgfmt</command> program is
166 generally harmless. This <command>msgfmt</command> program is part of the
167 Gettext package which the host distribution should provide.</para>
168
169 <note><para>There have been reports that this package may fail when
170 building as a "parallel make". If this occurs, rerun the make command
171 with a "-j1" option.</para></note>
172
173 <para>Compile the package:</para>
174
175<screen><userinput remap="make">make</userinput></screen>
176
177<!--
178 <para>This package does come with a test suite, however, it cannot be
179 run at this time because we do not have a C++ compiler yet.</para>
180
181 <note>
182 <para>The test suite also requires locale data to be installed in order to run
183 successfully. Locale data provides information to the system regarding
184 such things as the date, time, and currency formats accepted and output by
185 system utilities. If the test suites are not being run in this chapter
186 (as per the recommendation), there is no need to install the locales now.
187 The appropriate locales will be installed in the next chapter. To install
188 the Glibc locales anyway, use instructions from <xref
189 linkend="ch-system-glibc" role="."/></para>
190 </note>
191-->
192 <para>Install the package:</para>
193
194<screen><userinput remap="install">make install</userinput></screen>
195
196 <caution>
197 <para>At this point, it is imperative to stop and ensure that the basic
198 functions (compiling and linking) of the new toolchain are working as
199 expected. To perform a sanity check, run the following commands:</para>
200
201<screen><userinput>echo 'int main(){}' &gt; dummy.c
202$LFS_TGT-gcc dummy.c
203readelf -l a.out | grep ': /tools'</userinput></screen>
204
205 <para>If everything is working correctly, there should be no errors,
206 and the output of the last command will be of the form:</para>
207
208<screen><computeroutput>[Requesting program interpreter: /tools/lib/ld-linux.so.2]</computeroutput></screen>
209
210 <para>Note that for 64-bit machines, the interpreter name will be
211 <filename>/tools/lib64/ld-linux-x86-64.so.2</filename>.</para>
212
213 <para>If the output is not shown as above or there was no output at all,
214 then something is wrong. Investigate and retrace the steps to find out
215 where the problem is and correct it. This issue must be resolved before
216 continuing on.</para>
217
218 <para>Once all is well, clean up the test files:</para>
219
220<screen><userinput>rm -v dummy.c a.out</userinput></screen>
221
222 </caution>
223
224 <note><para>Building Binutils in the section after next will serve as an
225 additional check that the toolchain has been built properly. If Binutils
226 fails to build, it is an indication that something has gone wrong with the
227 previous Binutils, GCC, or Glibc installations.</para></note>
228
229 </sect2>
230
231 <sect2 role="content">
232 <title/>
233
234 <para>Details on this package are located in
235 <xref linkend="contents-glibc" role="."/></para>
236
237 </sect2>
238
239</sect1>
Note: See TracBrowser for help on using the repository browser.