source: chapter05/glibc.xml@ 68c0a30

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

Added DJ Lucas to the list of authors.
Updated dependencies for Gawk. Merged from trunk r11036
Updated to linux-4.4.4. Merged from trunk r11034
Updated to mpfr-3.1.4. Merged from trunk r11034.
Updated to pkg-config-0.29.1. Merged from trunk r11034.
Updated to tcl-core-8.6.5. Merged from trunk r11034.
Removed pcprofiledump and libpcprofile.so from the installed files list on the Glibc page. Merged from trunk r11034.
Added the creation of /var/log/faillog. Merged from trunk r11034.
Removed the --disable-profile and --enable-obsolete-rpc options from glibc. Merged from trunk r11034.
Cleaned up patches file.
Cleaned up whatsnew file.
Cleaned up changelog of former changes.
Merged various spelling changes from r11030 and r11031.
Disable static libraries in texinfo and document installation of XSParagraph.so. Merged from trunk r11032.

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

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