source: chapter05/glibc.xml@ 0fe6ccd8

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 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 0fe6ccd8 was 0fe6ccd8, checked in by Bruce Dubbs <bdubbs@…>, 12 years ago

Add instructions to Chapter 5 glibc to add rpc headers
to the host system if they are missing.

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