source: chapter05/glibc.xml@ 6e88633

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.5 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 6e88633 was 6e88633, checked in by Jeremy Huntwork <jhuntwork@…>, 15 years ago

Initial addition of support for x86_64

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

  • Property mode set to 100644
File size: 7.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/2003/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 potential issue if <filename>/etc/ld.so.preload</filename> is
47 used on the host system.</para>
48
49<screen><userinput remap="pre">sed -i 's@/etc/ld.so.preload@/tools/etc/ld.so.preload@' elf/rtld.c</userinput></screen>
50
51 <para>The Glibc documentation recommends building Glibc outside of the source
52 directory in a dedicated build directory:</para>
53
54<screen><userinput remap="pre">mkdir -v ../glibc-build
55cd ../glibc-build</userinput></screen>
56
57 <para>Because Glibc no longer supports i386, its developers say to use the
58 compiler flag <parameter>-march=i486</parameter> when building it for x86
59 machines. There are several ways to accomplish that, but testing shows that
60 the flag is best placed inside the build variable <quote>CFLAGS</quote>.
61 Instead of overriding completely what Glibc's internal build system uses
62 for CFLAGS, append the new flag to the existing contents of CFLAGS by
63 making use of the special file <filename>configparms</filename>. The
64 -mtune=native flag is also necessary to reset a reasonable value for -mtune
65 that is changed when setting -march.</para>
66
67<screen><userinput remap="configure">case `uname -m` in
68 i?86) echo "CFLAGS += -march=i486 -mtune=native" &gt; configparms ;;
69esac</userinput></screen>
70
71 <para>Next, prepare Glibc for compilation:</para>
72
73<screen><userinput remap="configure">../glibc-&glibc-version;/configure --prefix=/tools \
74 --disable-profile --enable-add-ons \
75 --enable-kernel=2.6.0 --with-binutils=/tools/bin \
76 --without-gd --with-headers=/tools/include \
77 --without-selinux</userinput></screen>
78
79 <variablelist>
80 <title>The meaning of the configure options:</title>
81
82 <varlistentry>
83 <term><parameter>--disable-profile</parameter></term>
84 <listitem>
85 <para>This builds the libraries without profiling information. Omit
86 this option if profiling on the temporary tools is necessary.</para>
87 </listitem>
88 </varlistentry>
89
90 <varlistentry>
91 <term><parameter>--enable-add-ons</parameter></term>
92 <listitem>
93 <para>This tells Glibc to use the NPTL add-on as its threading
94 library.</para>
95 </listitem>
96 </varlistentry>
97
98 <varlistentry>
99 <term><parameter>--enable-kernel=2.6.0</parameter></term>
100 <listitem>
101 <para>This tells Glibc to compile the library with support
102 for 2.6.x Linux kernels.</para>
103 </listitem>
104 </varlistentry>
105
106 <varlistentry>
107 <term><parameter>--with-binutils=/tools/bin</parameter></term>
108 <listitem>
109 <para>While not required, this switch ensures that there are
110 no errors pertaining to which Binutils programs get used during the
111 Glibc build.</para>
112 </listitem>
113 </varlistentry>
114
115 <varlistentry>
116 <term><parameter>--without-gd</parameter></term>
117 <listitem>
118 <para>This prevents the build of the <command>memusagestat</command>
119 program, which insists on linking against the host's libraries
120 (libgd, libpng, libz, etc.).</para>
121 </listitem>
122 </varlistentry>
123
124 <varlistentry>
125 <term><parameter>--with-headers=/tools/include</parameter></term>
126 <listitem>
127 <para>This tells Glibc to compile itself against the headers recently
128 installed to the tools directory, so that it knows exactly what
129 features the kernel has and can optimize itself accordingly.</para>
130 </listitem>
131 </varlistentry>
132
133 <varlistentry>
134 <term><parameter>--without-selinux</parameter></term>
135 <listitem>
136 <para>When building from hosts that include SELinux functionality
137 (e.g., Fedora Core 3), Glibc will build with support for SELinux.
138 As the LFS tools environment does not contain support for SELinux, a
139 Glibc compiled with such support will fail to operate correctly.</para>
140 </listitem>
141 </varlistentry>
142
143 </variablelist>
144
145 <para>During this stage the following warning might appear:</para>
146
147 <blockquote>
148<screen><computeroutput>configure: WARNING:
149*** These auxiliary programs are missing or
150*** incompatible versions: msgfmt
151*** some features will be disabled.
152*** Check the INSTALL file for required versions.</computeroutput></screen>
153 </blockquote>
154
155 <para>The missing or incompatible <command>msgfmt</command> program is
156 generally harmless, but it can sometimes cause issues when running the
157 test suite. This <command>msgfmt</command> program is part of the
158 Gettext package which the host distribution should provide. If
159 <command>msgfmt</command> is present but deemed incompatible, upgrade
160 the host system's Gettext package or continue without it and see if
161 the test suite runs without problems regardless.</para>
162
163 <para>Compile the package:</para>
164
165<screen><userinput remap="make">make</userinput></screen>
166
167 <para>This package does come with a test suite, however, it cannot be
168 run at this time because we do not have a C++ compiler yet.</para>
169
170 <para>The install stage of Glibc will issue a harmless warning at the
171 end about the absence of <filename>/tools/etc/ld.so.conf</filename>.
172 Prevent this warning with:</para>
173
174<screen><userinput remap="install">mkdir -v /tools/etc
175touch /tools/etc/ld.so.conf</userinput></screen>
176
177 <para>Install the package:</para>
178
179<screen><userinput remap="install">make install</userinput></screen>
180
181 <para>Different countries and cultures have varying conventions for
182 how to communicate. These conventions range from the format for
183 representing dates and times to more complex issues, such as the
184 language spoken. The <quote>internationalization</quote> of GNU
185 programs works by locale.</para>
186
187 <note>
188 <para>If the test suites are not being run in this chapter (as per
189 the recommendation), there is no need to install the locales now.
190 The appropriate locales will be installed in the next chapter.
191 To install the Glibc locales anyway, use instructions from
192 <xref linkend="ch-system-glibc" role="."/></para>
193 </note>
194
195 </sect2>
196
197 <sect2 role="content">
198 <title/>
199
200 <para>Details on this package are located in
201 <xref linkend="contents-glibc" role="."/></para>
202
203 </sect2>
204
205</sect1>
Note: See TracBrowser for help on using the repository browser.