source: chapter05/glibc.xml@ 9f5aaf7

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

Add whitespace for better readability of instructions

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

  • Property mode set to 100644
File size: 7.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>Fix a bug that prevents Glibc from building with GCC-&gcc-version;:</para>
47
48 <screen><userinput remap="pre">patch -Np1 -i ../&glibc-gcc_fix-patch;</userinput></screen>
49
50 <para>Also address a header check that fails due to an incomplete build
51 environment at this point:</para>
52
53 <screen><userinput remap="pre">patch -Np1 -i ../&glibc-cpuid-patch;</userinput></screen>
54
55 <para>The Glibc documentation recommends building Glibc outside of the source
56 directory in a dedicated build directory:</para>
57
58<screen><userinput remap="pre">mkdir -v ../glibc-build
59cd ../glibc-build</userinput></screen>
60
61 <para>Because Glibc no longer supports i386, its developers say to use the
62 compiler flag <parameter>-march=i486</parameter> when building it for x86
63 machines. There are several ways to accomplish that, but testing shows that
64 the flag is best placed inside the build variable <quote>CFLAGS</quote>.
65 Instead of overriding completely what Glibc's internal build system uses
66 for CFLAGS, append the new flag to the existing contents of CFLAGS by
67 making use of the special file <filename>configparms</filename>. The
68 -mtune=native flag is also necessary to reset a reasonable value for -mtune
69 that is changed when setting -march.</para>
70
71<screen><userinput remap="configure">case `uname -m` in
72 i?86) echo "CFLAGS += -march=i486 -mtune=native" &gt; configparms ;;
73esac</userinput></screen>
74
75 <para>Next, prepare Glibc for compilation:</para>
76
77<screen><userinput remap="configure">../glibc-&glibc-version;/configure \
78 --prefix=/tools \
79 --host=$LFS_TGT \
80 --build=$(../glibc-&glibc-version;/scripts/config.guess) \
81 --disable-profile \
82 --enable-add-ons \
83 --enable-kernel=2.6.25 \
84 --with-headers=/tools/include \
85 libc_cv_forced_unwind=yes \
86 libc_cv_c_cleanup=yes</userinput></screen>
87
88 <variablelist>
89 <title>The meaning of the configure options:</title>
90
91 <varlistentry>
92 <term><parameter>--host=$LFS_TGT, --build=$(../glibc-&glibc-version;/scripts/config.guess)</parameter></term>
93 <listitem>
94 <para>The combined effect of these switches is that Glibc's build system
95 configures itself to cross-compile, using the cross-linker and
96 cross-compiler in <filename class="directory">/tools</filename>.</para>
97 </listitem>
98 </varlistentry>
99
100 <varlistentry>
101 <term><parameter>--disable-profile</parameter></term>
102 <listitem>
103 <para>This builds the libraries without profiling information. Omit
104 this option if profiling on the temporary tools is necessary.</para>
105 </listitem>
106 </varlistentry>
107
108 <varlistentry>
109 <term><parameter>--enable-add-ons</parameter></term>
110 <listitem>
111 <para>This tells Glibc to use the NPTL add-on as its threading
112 library.</para>
113 </listitem>
114 </varlistentry>
115
116 <varlistentry>
117 <term><parameter>--enable-kernel=2.6.25</parameter></term>
118 <listitem>
119 <para>This tells Glibc to compile the library with support
120 for 2.6.25 and later Linux kernels. Workarounds for older
121 kernels are not enabled.</para>
122 </listitem>
123 </varlistentry>
124
125 <varlistentry>
126 <term><parameter>--with-headers=/tools/include</parameter></term>
127 <listitem>
128 <para>This tells Glibc to compile itself against the headers recently
129 installed to the tools directory, so that it knows exactly what
130 features the kernel has and can optimize itself accordingly.</para>
131 </listitem>
132 </varlistentry>
133
134 <varlistentry>
135 <term><parameter>libc_cv_forced_unwind=yes</parameter></term>
136 <listitem>
137 <para>The linker installed during
138 <xref linkend="ch-tools-binutils-pass1"/> was cross-compiled and as
139 such cannot be used until Glibc has been installed. This means that
140 the configure test for force-unwind support will fail, as it relies on
141 a working linker. The libc_cv_forced_unwind=yes variable is passed in
142 order to inform <command>configure</command> that force-unwind
143 support is available without it having to run the test.</para>
144 </listitem>
145 </varlistentry>
146 <varlistentry>
147 <term><parameter>libc_cv_c_cleanup=yes</parameter></term>
148 <listitem>
149 <para>Simlarly, we pass libc_cv_c_cleanup=yes through to the
150 <command>configure</command> script so that the test is skipped and C
151 cleanup handling support is configured.</para>
152 </listitem>
153 </varlistentry>
154
155 </variablelist>
156
157 <para>During this stage the following warning might appear:</para>
158
159 <blockquote>
160<screen><computeroutput>configure: WARNING:
161*** These auxiliary programs are missing or
162*** incompatible versions: msgfmt
163*** some features will be disabled.
164*** Check the INSTALL file for required versions.</computeroutput></screen>
165 </blockquote>
166
167 <para>The missing or incompatible <command>msgfmt</command> program is
168 generally harmless. This <command>msgfmt</command> program is part of the
169 Gettext package which the host distribution should provide.</para>
170
171 <para>Compile the package:</para>
172
173<screen><userinput remap="make">make</userinput></screen>
174
175 <para>This package does come with a test suite, however, it cannot be
176 run at this time because we do not have a C++ compiler yet.</para>
177
178 <note>
179 <para>The test suite also requires locale data to be installed in order to run
180 successfully. Locale data provides information to the system regarding
181 such things as the date, time, and currency formats accepted and output by
182 system utilities. If the test suites are not being run in this chapter
183 (as per the recommendation), there is no need to install the locales now.
184 The appropriate locales will be installed in the next chapter. To install
185 the Glibc locales anyway, use instructions from <xref
186 linkend="ch-system-glibc" role="."/></para>
187 </note>
188
189 <para>Install the package:</para>
190
191<screen><userinput remap="install">make install</userinput></screen>
192
193 </sect2>
194
195 <sect2 role="content">
196 <title/>
197
198 <para>Details on this package are located in
199 <xref linkend="contents-glibc" role="."/></para>
200
201 </sect2>
202
203</sect1>
Note: See TracBrowser for help on using the repository browser.