source: chapter05/glibc.xml@ b870799

multilib xry111/multilib
Last change on this file since b870799 was b870799, checked in by Thomas Trepl <thomas@…>, 15 months ago

Automatic merge of trunk into multilib

  • Property mode set to 100644
File size: 14.8 KB
RevLine 
[673b0d8]1<?xml version="1.0" encoding="ISO-8859-1"?>
[b06ca36]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[673b0d8]4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
[1f7ca93]7
[9652249]8<sect1 id="ch-tools-glibc" role="wrap">
[1f7ca93]9 <?dbhtml filename="glibc.html"?>
10
[e747759]11 <sect1info condition="script">
12 <productname>glibc</productname>
13 <productnumber>&glibc-version;</productnumber>
14 <address>&glibc-url;</address>
15 </sect1info>
16
[1f7ca93]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/>
[bc82645e]26
[d9441360]27 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[6dfcfecc]28 href="../chapter08/glibc.xml"
[1f7ca93]29 xpointer="xpointer(/sect1/sect2[1]/para[1])"/>
[81fd230]30
[1f7ca93]31 <segmentedlist>
32 <segtitle>&buildtime;</segtitle>
33 <segtitle>&diskspace;</segtitle>
[673b0d8]34
[1f7ca93]35 <seglistitem>
[6dfcfecc]36 <seg>&glibc-tmp-sbu;</seg>
37 <seg>&glibc-tmp-du;</seg>
[1f7ca93]38 </seglistitem>
39 </segmentedlist>
[673b0d8]40
[1f7ca93]41 </sect2>
[73aedd1d]42
[1f7ca93]43 <sect2 role="installation">
44 <title>Installation of Glibc</title>
[6fc168b]45
[ceebda5]46 <para>First, create a symbolic link for LSB compliance. Additionally,
[6dfcfecc]47 for x86_64, create a compatibility symbolic link required for proper
48 operation of the dynamic library loader:</para>
49
50<screen arch="default"><userinput remap="pre">case $(uname -m) in
51 i?86) ln -sfv ld-linux.so.2 $LFS/lib/ld-lsb.so.3
52 ;;
53 x86_64) ln -sfv ../lib/ld-linux-x86-64.so.2 $LFS/lib64
54 ln -sfv ../lib/ld-linux-x86-64.so.2 $LFS/lib64/ld-lsb-x86-64.so.3
55 ;;
56esac</userinput></screen>
57<!-- no ld-linux.so.2 here as multilib is based on x86_64, not on i686 -->
58<screen arch="ml_32,ml_x32,ml_all"><userinput remap="pre">ln -sfv ../lib/ld-linux-x86-64.so.2 $LFS/lib64
59ln -sfv ../lib/ld-linux-x86-64.so.2 $LFS/lib64/ld-lsb-x86-64.so.3</userinput></screen>
60
[0fc1b27]61 <note>
62 <para>
63 The above command is correct. The <command>ln</command> command has
[f6820bb6]64 several syntactic versions, so be sure to check
[0fc1b27]65 <command>info coreutils ln</command> and <filename>ln(1)</filename>
[f6820bb6]66 before reporting what may appear to be an error.
[0fc1b27]67 </para>
68 </note>
69
[f6820bb6]70 <para>Some of the Glibc programs use the non-FHS-compliant
[6dfcfecc]71 <filename class="directory">/var/db</filename> directory to store their
72 runtime data. Apply the following patch to make such programs store their
73 runtime data in the FHS-compliant locations:</para>
74
75<screen><userinput remap="pre">patch -Np1 -i ../glibc-&glibc-version;-fhs-1.patch</userinput></screen>
76
[a26f29f]77 <para>The Glibc documentation recommends building Glibc
[f1dd547]78 in a dedicated build directory:</para>
[9bda40d]79
[f1dd547]80<screen><userinput remap="pre">mkdir -v build
81cd build</userinput></screen>
[f1c177f]82
[4eee9cc]83 <para>Ensure that the <command>ldconfig</command> and <command>sln</command>
[bcb20b4]84 utilities are installed into
[4eee9cc]85 <filename class="directory">/usr/sbin</filename>:</para>
86
87<screen><userinput remap="pre">echo "rootsbindir=/usr/sbin" &gt; configparms</userinput></screen>
88
[1f7ca93]89 <para>Next, prepare Glibc for compilation:</para>
[73aedd1d]90
[9c31d62]91<screen arch="default"><userinput remap="configure">../configure \
[6dfcfecc]92 --prefix=/usr \
[63df8c7]93 --host=$LFS_TGT \
94 --build=$(../scripts/config.guess) \
[0f18f2b]95 --enable-kernel=&min-kernel; \
[6dfcfecc]96 --with-headers=$LFS/usr/include \
[bbfb090]97 --disable-crypt \
[d4b5218]98 libc_cv_slibdir=/usr/lib</userinput></screen>
[9c31d62]99<screen arch="ml_32,ml_x32,ml_all"><userinput remap="configure">../configure \
[6dfcfecc]100 --prefix=/usr \
[9c31d62]101 --host=$LFS_TGT \
102 --build=$(../scripts/config.guess) \
103 --enable-kernel=&min-kernel; \
[6dfcfecc]104 --with-headers=$LFS/usr/include \
[9c31d62]105 --enable-multi-arch \
[d4b5218]106 libc_cv_slibdir=/usr/lib</userinput></screen>
[73aedd1d]107
[1f7ca93]108 <variablelist>
109 <title>The meaning of the configure options:</title>
110
[4e82d47]111 <varlistentry>
[418b038]112 <term><parameter>--host=$LFS_TGT, --build=$(../scripts/config.guess)</parameter></term>
[4e82d47]113 <listitem>
114 <para>The combined effect of these switches is that Glibc's build system
[6dfcfecc]115 configures itself to be cross-compiled, using the cross-linker and
116 cross-compiler in <filename class="directory">$LFS/tools</filename>.</para>
[4e82d47]117 </listitem>
118 </varlistentry>
[1118b17]119
[1f7ca93]120 <varlistentry>
[70cd9f32]121 <term><parameter>--enable-kernel=&min-kernel;</parameter></term>
[1f7ca93]122 <listitem>
123 <para>This tells Glibc to compile the library with support
[70cd9f32]124 for &min-kernel; and later Linux kernels. Workarounds for older
[3532721]125 kernels are not enabled.</para>
[1f7ca93]126 </listitem>
127 </varlistentry>
[1118b17]128
[1f7ca93]129 <varlistentry>
[6dfcfecc]130 <term><parameter>--with-headers=$LFS/usr/include</parameter></term>
[1f7ca93]131 <listitem>
[6dfcfecc]132 <para>This tells Glibc to compile itself against the headers
133 recently installed to the $LFS/usr/include directory, so that
134 it knows exactly what features the kernel has and can optimize
135 itself accordingly.</para>
[4e82d47]136 </listitem>
137 </varlistentry>
[6dfcfecc]138
[4e82d47]139 <varlistentry>
[d7a9421]140 <term><parameter>libc_cv_slibdir=/usr/lib</parameter></term>
[4e82d47]141 <listitem>
[d7a9421]142 <para>This ensures that the library is installed in /usr/lib instead
[f6820bb6]143 of the default /lib64 on 64-bit machines.</para>
[1f7ca93]144 </listitem>
145 </varlistentry>
146
147 </variablelist>
148
149 <para>During this stage the following warning might appear:</para>
150
151 <blockquote>
152<screen><computeroutput>configure: WARNING:
153*** These auxiliary programs are missing or
[81fd230]154*** incompatible versions: msgfmt
155*** some features will be disabled.
[1f7ca93]156*** Check the INSTALL file for required versions.</computeroutput></screen>
157 </blockquote>
[81fd230]158
[1f7ca93]159 <para>The missing or incompatible <command>msgfmt</command> program is
[5f7456b]160 generally harmless. This <command>msgfmt</command> program is part of the
[f6820bb6]161 Gettext package, which the host distribution should provide.</para>
[81fd230]162
[a26f29f]163 <note><para>There have been reports that this package may fail when
[f6820bb6]164 building as a "parallel make". If that occurs, rerun the make command
165 with the "-j1" option.</para></note>
[7b1923d]166
[1f7ca93]167 <para>Compile the package:</para>
[73aedd1d]168
[0445a3d]169<screen><userinput remap="make">make</userinput></screen>
[73aedd1d]170
[1f7ca93]171 <para>Install the package:</para>
[73aedd1d]172
[6dfcfecc]173 <warning><para>If <envar>LFS</envar> is not properly set, and despite the
[38de42d]174 recommendations, you are building as
175 <systemitem class="username">root</systemitem>, the next command will
[f6820bb6]176 install the newly built Glibc to your host system, which will almost
177 certainly render it unusable. So double-check that the environment is
178 correctly set, and that you are not &root;, before running the following command.</para></warning>
[6dfcfecc]179
180<screen><userinput remap="install">make DESTDIR=$LFS install</userinput></screen>
181
182 <variablelist>
183 <title>The meaning of the <command>make install</command> option:</title>
184
185 <varlistentry>
186 <term><parameter>DESTDIR=$LFS</parameter></term>
187 <listitem>
188 <para>The <envar>DESTDIR</envar> make variable is used by almost all
189 packages to define the location where the package should be
190 installed. If it is not set, it defaults to the root (<filename
191 class="directory">/</filename>) directory. Here we specify that
[f6820bb6]192 the package is installed in <filename class="directory">$LFS
193 </filename>, which will become the root directory in <xref linkend=
[6dfcfecc]194 "ch-tools-chroot"/>.</para>
195 </listitem>
196 </varlistentry>
[73aedd1d]197
[6dfcfecc]198 </variablelist>
199
[f6820bb6]200 <para>Fix a hard coded path to the executable loader in the
[0ebda11]201 <command>ldd</command> script:</para>
202
203<screen><userinput remap="install">sed '/RTLDLIST=/s@/usr@@g' -i $LFS/usr/bin/ldd</userinput></screen>
204
[6dfcfecc]205 <caution>
206 <para>At this point, it is imperative to stop and ensure that the basic
207 functions (compiling and linking) of the new toolchain are working as
208 expected. To perform a sanity check, run the following commands:</para>
[1a3e6a3]209
[793f9087]210<screen><userinput>echo 'int main(){}' | $LFS_TGT-gcc -xc -
[b3f157c6]211readelf -l a.out | grep ld-linux</userinput></screen>
[1a3e6a3]212
[6dfcfecc]213 <para>If everything is working correctly, there should be no errors,
214 and the output of the last command will be of the form:</para>
[1a3e6a3]215
[6dfcfecc]216<screen><computeroutput>[Requesting program interpreter: /lib64/ld-linux-x86-64.so.2]</computeroutput></screen>
[1a3e6a3]217
[6dfcfecc]218 <para arch="default">Note that for 32-bit machines, the interpreter name will be
219 <filename>/lib/ld-linux.so.2</filename>.</para>
[1a3e6a3]220
[f6820bb6]221 <para>If the output is not as shown above, or there is no output at all,
[6dfcfecc]222 then something is wrong. Investigate and retrace the steps to find out
223 where the problem is and correct it. This issue must be resolved before
[f6820bb6]224 continuing.</para>
[1a3e6a3]225
[b3f157c6]226 <para>Once all is well, clean up the test file:</para>
[1a3e6a3]227
[b3f157c6]228<screen><userinput>rm -v a.out</userinput></screen>
[1a3e6a3]229
[6dfcfecc]230 </caution>
[1a3e6a3]231
[f6820bb6]232 <note><para>Building the packages in the next chapter will serve as an
[6dfcfecc]233 additional check that the toolchain has been built properly. If some
[f6820bb6]234 package, especially Binutils-pass2 or GCC-pass2, fails to build, it is
[6dfcfecc]235 an indication that something has gone wrong with the
[f6820bb6]236 preceding Binutils, GCC, or Glibc installations.</para></note>
[bd5b888]237<!--
[6dfcfecc]238 <para>Now that our cross-toolchain is complete, finalize the installation
[f6820bb6]239 of the limits.h header. To do this, run a utility provided by the GCC
[6dfcfecc]240 developers:</para>
[bc82645e]241
[6dfcfecc]242<screen><userinput>$LFS/tools/libexec/gcc/$LFS_TGT/&gcc-version;/install-tools/mkheaders</userinput></screen>
[bd5b888]243-->
[6dfcfecc]244 </sect2>
[e2ccc32]245
[6dfcfecc]246 <!-- - - - - - - - - - -->
247 <!-- Multilib - 32bit -->
248 <!-- - - - - - - - - - -->
249 <sect2 arch="ml_32,ml_all">
250 <title>Building Glibc - 32bit</title>
251
252 <para>Now recompile for m32. The extracted source can be
[0ebda11]253 reused but needs to be cleaned before installing the m32
[6dfcfecc]254 version of Glibc.</para>
255
256 <para>Clear the build directory and remove artefacts from
257 previous build:</para>
258
259<screen><userinput remap="pre">make clean
260find .. -name "*.a" -delete</userinput></screen>
261
262 <para>Configure Glibc for m32 with the following commands:</para>
263
264<screen><userinput remap="configure">CC="$LFS_TGT-gcc -m32" \
265CXX="$LFS_TGT-g++ -m32" \
266../configure \
267 --prefix=/usr \
268 --host=$LFS_TGT32 \
269 --build=$(../scripts/config.guess) \
270 --enable-kernel=&min-kernel; \
271 --with-headers=$LFS/usr/include \
272 --enable-multi-arch \
[0ebda11]273 --libdir=/usr/lib32 \
274 --libexecdir=/usr/lib32 \
[d4b5218]275 libc_cv_slibdir=/usr/lib32</userinput></screen>
[e2ccc32]276
[6dfcfecc]277 <para>Compile the package:</para>
[e2ccc32]278
[6dfcfecc]279<screen><userinput remap="make">make</userinput></screen>
[e2ccc32]280
[6dfcfecc]281 <para>Install the package:</para>
[e2ccc32]282
[6dfcfecc]283<screen><userinput remap="install">make DESTDIR=$PWD/DESTDIR install
[0ebda11]284cp -a DESTDIR/usr/lib32 $LFS/usr/
[6dfcfecc]285install -vm644 DESTDIR/usr/include/gnu/{lib-names,stubs}-32.h \
286 $LFS/usr/include/gnu/
[0ebda11]287ln -svf ../lib32/ld-linux.so.2 $LFS/lib/ld-linux.so.2</userinput></screen>
288
[b3f1ebb3]289
[6dfcfecc]290 <caution>
291 <para>At this point, it is imperative to stop and ensure that the basic
292 functions (compiling and linking) of the new toolchain are working as
293 expected. To perform a sanity check, run the following commands:</para>
[b3f1ebb3]294
[6dfcfecc]295<screen><userinput>echo 'int main(){}' &gt; dummy.c
296$LFS_TGT-gcc -m32 dummy.c
297readelf -l a.out | grep '/ld-linux'</userinput></screen>
[b3f1ebb3]298
[6dfcfecc]299 <para>If everything is working correctly, there should be no errors,
300 and the output of the last command will be of the form:</para>
[b3f1ebb3]301
[6dfcfecc]302<screen><computeroutput>[Requesting program interpreter: /lib/ld-linux.so.2]</computeroutput></screen>
[e2ccc32]303
[6dfcfecc]304 <para>If the output is not shown as above or there was no output at all,
305 then something is wrong. Investigate and retrace the steps to find out
306 where the problem is and correct it. This issue must be resolved before
307 continuing on.</para>
[e2ccc32]308
[6dfcfecc]309 <para>Once all is well, clean up the test files:</para>
[e2ccc32]310
[6dfcfecc]311<screen><userinput>rm -v dummy.c a.out</userinput></screen>
[e2ccc32]312
[6dfcfecc]313 </caution>
[e2ccc32]314
[6dfcfecc]315 </sect2><!-- m32 -->
[b3f1ebb3]316
[6dfcfecc]317 <!-- - - - - - - - - - -->
318 <!-- Multilib - x32bit -->
319 <!-- - - - - - - - - - -->
320
321 <sect2 arch="ml_x32,ml_all">
322 <title>Building Glibc - x32bit</title>
323
324 <para>Now recompile for mx32. The extracted source can be
[0ebda11]325 reused but needs to be cleaned before installing the mx32
[6dfcfecc]326 version of Glibc.</para>
327
328 <para>Clear the build directory and remove artefacts from
329 previous build:</para>
330
331<screen><userinput remap="pre">make clean
332find .. -name "*.a" -delete</userinput></screen>
333
334 <para>Configure Glibc for mx32 with the following commands:</para>
335
336<screen><userinput remap="configure">CC="$LFS_TGT-gcc -mx32" \
337CXX="$LFS_TGT-g++ -mx32" \
338../configure \
339 --prefix=/usr \
340 --host=$LFS_TGTX32 \
341 --build=$(../scripts/config.guess) \
342 --enable-kernel=&min-kernel; \
343 --with-headers=$LFS/usr/include \
344 --enable-multi-arch \
[0ebda11]345 --libdir=/usr/libx32 \
346 --libexecdir=/usr/libx32 \
[d4b5218]347 libc_cv_slibdir=/usr/libx32</userinput></screen>
[b3f1ebb3]348
[6dfcfecc]349 <para>Compile the package:</para>
350
351<screen><userinput remap="make">make</userinput></screen>
[b3f1ebb3]352
[6dfcfecc]353 <para>Install the package:</para>
[b3f1ebb3]354
[6dfcfecc]355<screen><userinput remap="install">make DESTDIR=$PWD/DESTDIR install
[0ebda11]356cp -a DESTDIR/usr/libx32 $LFS/usr/
[6dfcfecc]357install -vm644 DESTDIR/usr/include/gnu/{lib-names,stubs}-x32.h \
358 $LFS/usr/include/gnu/
[0ebda11]359ln -svf ../libx32/ld-linux-x32.so.2 $LFS/lib/ld-linux-x32.so.2</userinput></screen>
[b3f1ebb3]360
[6dfcfecc]361 <caution>
362 <para>At this point, it is imperative to stop and ensure that the basic
363 functions (compiling and linking) of the new toolchain are working as
364 expected. To perform a sanity check, run the following commands:</para>
[b3f1ebb3]365
366<screen><userinput>echo 'int main(){}' &gt; dummy.c
367$LFS_TGT-gcc -mx32 dummy.c
[6dfcfecc]368readelf -l a.out | grep '/ld-linux-x32'</userinput></screen>
[b3f1ebb3]369
[6dfcfecc]370 <para>If everything is working correctly, there should be no errors,
371 and the output of the last command will be of the form:</para>
[b3f1ebb3]372
[d7e0db5]373<screen><computeroutput>[Requesting program interpreter: /libx32/ld-linux-x32.so.2]</computeroutput></screen>
[b3f1ebb3]374
[6dfcfecc]375 <para>If the output is not shown as above or there was no output at all,
376 then something is wrong. Investigate and retrace the steps to find out
377 where the problem is and correct it. This issue must be resolved before
378 continuing on.</para>
[b3f1ebb3]379
[6dfcfecc]380 <para>Once all is well, clean up the test files:</para>
[b3f1ebb3]381
382<screen><userinput>rm -v dummy.c a.out</userinput></screen>
383
[6dfcfecc]384 </caution>
385
386 </sect2><!-- mx32 -->
387
[1f7ca93]388 <sect2 role="content">
389 <title/>
[81fd230]390
[1f7ca93]391 <para>Details on this package are located in
392 <xref linkend="contents-glibc" role="."/></para>
393
394 </sect2>
[81fd230]395
[1f7ca93]396</sect1>
Note: See TracBrowser for help on using the repository browser.