source: chapter05/glibc.xml@ 91f77b31

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.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 91f77b31 was 093af3b, checked in by Matthew Burgess <matthew@…>, 15 years ago

Upgrade to Binutils-2.20. Fixes #2505.

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

  • Property mode set to 100644
File size: 7.5 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
[1f7ca93]27 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
28 href="../chapter06/glibc.xml"
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>
[e4a5635]36 <seg>&glibc-ch5-sbu;</seg>
37 <seg>&glibc-ch5-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>
[73aedd1d]45
[093af3b]46 <para>Apply a patch so that Glibc will build against
47 Binutils-&binutils-version;:</para>
48
49<screen><userinput remap="pre">patch -Np1 -i ../&glibc-binutils-patch;</userinput></screen>
50
[2594b0a]51 <!-- This sed can be removed for any glibc newer than 2.10.1 (along with the
52 matching sed in chapter 6). See glibc bug 10262. -->
53 <para>Fix an error in the constants that get passed to the futex system
54 call in some cases, causing certain pthread_mutex operations to fail:</para>
55
[d9ed5f37]56<screen><userinput remap="pre">cp -v nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S{,.orig}
[2594b0a]57sed -e 's/FUTEX_WAIT\( | FUTEX_CLOCK_REALTIME, reg\)/FUTEX_WAIT_BITSET\1/' \
58 &lt;nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S.orig \
59 &gt;nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S</userinput></screen>
60
[1f7ca93]61 <para>The Glibc documentation recommends building Glibc outside of the source
62 directory in a dedicated build directory:</para>
[3d36131c]63
[0445a3d]64<screen><userinput remap="pre">mkdir -v ../glibc-build
[73aedd1d]65cd ../glibc-build</userinput></screen>
66
[2a7ac34]67 <para>Because Glibc no longer supports i386, its developers say to use the
68 compiler flag <parameter>-march=i486</parameter> when building it for x86
69 machines. There are several ways to accomplish that, but testing shows that
70 the flag is best placed inside the build variable <quote>CFLAGS</quote>.
71 Instead of overriding completely what Glibc's internal build system uses
72 for CFLAGS, append the new flag to the existing contents of CFLAGS by
[1c6f1c1]73 making use of the special file <filename>configparms</filename>. The
74 -mtune=native flag is also necessary to reset a reasonable value for -mtune
75 that is changed when setting -march.</para>
[2a7ac34]76
[6e88633]77<screen><userinput remap="configure">case `uname -m` in
78 i?86) echo "CFLAGS += -march=i486 -mtune=native" &gt; configparms ;;
79esac</userinput></screen>
[2a7ac34]80
[1f7ca93]81 <para>Next, prepare Glibc for compilation:</para>
[73aedd1d]82
[0445a3d]83<screen><userinput remap="configure">../glibc-&glibc-version;/configure --prefix=/tools \
[4e82d47]84 --host=$LFS_TGT --build=$(../glibc-&glibc-version;/scripts/config.guess) \
[94aa6621]85 --disable-profile --enable-add-ons \
[3532721]86 --enable-kernel=2.6.18 --with-headers=/tools/include \
[4e82d47]87 libc_cv_forced_unwind=yes libc_cv_c_cleanup=yes</userinput></screen>
[73aedd1d]88
[1f7ca93]89 <variablelist>
90 <title>The meaning of the configure options:</title>
91
[4e82d47]92 <varlistentry>
93 <term><parameter>--host=$LFS_TGT, --build=$(../glibc-&glibc-version;/scripts/config.guess)</parameter></term>
94 <listitem>
95 <para>The combined effect of these switches is that Glibc's build system
96 configures itself to cross-compile, using the cross-linker and
97 cross-compiler in <filename class="directory">/tools</filename>.</para>
98 </listitem>
99 </varlistentry>
100
[1f7ca93]101 <varlistentry>
102 <term><parameter>--disable-profile</parameter></term>
103 <listitem>
104 <para>This builds the libraries without profiling information. Omit
105 this option if profiling on the temporary tools is necessary.</para>
106 </listitem>
107 </varlistentry>
108
109 <varlistentry>
110 <term><parameter>--enable-add-ons</parameter></term>
111 <listitem>
112 <para>This tells Glibc to use the NPTL add-on as its threading
113 library.</para>
114 </listitem>
115 </varlistentry>
116
117 <varlistentry>
[3532721]118 <term><parameter>--enable-kernel=2.6.18</parameter></term>
[1f7ca93]119 <listitem>
120 <para>This tells Glibc to compile the library with support
[3532721]121 for 2.6.18 and later Linux kernels. Workarounds for older
122 kernels are not enabled.</para>
[1f7ca93]123 </listitem>
124 </varlistentry>
125
126 <varlistentry>
127 <term><parameter>--with-headers=/tools/include</parameter></term>
128 <listitem>
129 <para>This tells Glibc to compile itself against the headers recently
130 installed to the tools directory, so that it knows exactly what
131 features the kernel has and can optimize itself accordingly.</para>
132 </listitem>
133 </varlistentry>
134
135 <varlistentry>
[4e82d47]136 <term><parameter>libc_cv_forced_unwind=yes</parameter></term>
[1f7ca93]137 <listitem>
[4e82d47]138 <para>The build requires support for forced unwind, but because it is
139 being cross compiled, it cannot auto detect it. Setting this variable
[1cdaff9]140 on the command line explicitly tells the
141 <command>configure</command> script that support is available.</para>
[4e82d47]142 </listitem>
143 </varlistentry>
144 <varlistentry>
145 <term><parameter>libc_cv_c_cleanup=yes</parameter></term>
146 <listitem>
147 <para>The build also requires support for C cleanup handling, which it
148 cannot auto detect when being cross compiled. Enable it explicitly.</para>
[1f7ca93]149 </listitem>
150 </varlistentry>
151
152 </variablelist>
153
154 <para>During this stage the following warning might appear:</para>
155
156 <blockquote>
157<screen><computeroutput>configure: WARNING:
158*** These auxiliary programs are missing or
[81fd230]159*** incompatible versions: msgfmt
160*** some features will be disabled.
[1f7ca93]161*** Check the INSTALL file for required versions.</computeroutput></screen>
162 </blockquote>
[81fd230]163
[1f7ca93]164 <para>The missing or incompatible <command>msgfmt</command> program is
[5f7456b]165 generally harmless. This <command>msgfmt</command> program is part of the
166 Gettext package which the host distribution should provide.</para>
[81fd230]167
[1f7ca93]168 <para>Compile the package:</para>
[73aedd1d]169
[0445a3d]170<screen><userinput remap="make">make</userinput></screen>
[73aedd1d]171
[0abc697]172 <para>This package does come with a test suite, however, it cannot be
173 run at this time because we do not have a C++ compiler yet.</para>
[81fd230]174
[ca2f862e]175 <note>
176 <para>The test suite also requires locale data to be installed in order to run
[90674770]177 successfully. Locale data provides information to the system regarding
[ca2f862e]178 such things as the date, time, and currency formats accepted and output by
179 system utilities. If the test suites are not being run in this chapter
180 (as per the recommendation), there is no need to install the locales now.
181 The appropriate locales will be installed in the next chapter. To install
182 the Glibc locales anyway, use instructions from <xref
183 linkend="ch-system-glibc" role="."/></para>
184 </note>
185
[1f7ca93]186 <para>Install the package:</para>
[73aedd1d]187
[0445a3d]188<screen><userinput remap="install">make install</userinput></screen>
[73aedd1d]189
[1f7ca93]190 </sect2>
[bc82645e]191
[1f7ca93]192 <sect2 role="content">
193 <title/>
[81fd230]194
[1f7ca93]195 <para>Details on this package are located in
196 <xref linkend="contents-glibc" role="."/></para>
197
198 </sect2>
[81fd230]199
[1f7ca93]200</sect1>
Note: See TracBrowser for help on using the repository browser.