source: chapter06/glibc-inst.xml@ ada6eeb

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 12.2 12.2-rc1 6.0 6.1 6.1.1 6.3 6.4 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 v4_1 v5_0 v5_1 v5_1_1 xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/loongarch-12.2 xry111/mips64el xry111/multilib xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since ada6eeb was ada6eeb, checked in by Gerard Beekmans <gerard@…>, 22 years ago

removed superfluous && from end of line

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

  • Property mode set to 100644
File size: 6.2 KB
Line 
1<sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
2
3<sect2>
4<title>Installation of Glibc</title>
5
6<para>Before starting to install glibc, you must cd into the
7glibc-&glibc-version; directory and unpack glibc-linuxthreads inside
8the glibc-&glibc-version; directory, not in /usr/src as you normally
9would do.</para>
10
11<para>This package is known to behave badly when you have changed its
12default optimization flags (including the -march and -mcpu options). Glibc
13is best left alone. Therefore, if you have defined any environment variables
14that override default optimizations, such as CFLAGS and CXXFLAGS, we
15recommend unsetting or modifying them when building Glibc. You have
16been warned.</para>
17
18<para>Basically, compiling Glibc in any other way than the book suggests
19is putting your system at very high risk.</para>
20
21<para>We'll start by applying a patch to Glibc that fixes a few
22things:</para>
23
24<itemizedlist>
25<listitem><para>It converts all occurrences of <emphasis>$(PERL)</emphasis>
26to <emphasis>/usr/bin/perl</emphasis> in the
27<filename>malloc/Makefile</filename> file. This is done because Glibc
28can't autodetect the location of perl because the Perl package hasn't been
29installed yet.</para></listitem>
30
31<listitem><para>It replaces all occurrences of <emphasis>root</emphasis>
32with <emphasis>0</emphasis> in the <filename>login/Makefile</filename>
33file. This is done because Glibc itself isn't installed yet and therefore
34username to userid resolving isn't working yet, so a
35<userinput>chown root file</userinput> will fail, however it'll work fine
36if you use the numeric IDs (such as <userinput>chown 0
37file</userinput>).</para></listitem>
38
39<listitem><para>Lastly, the patch also fixes a problem that causes
40statically linked binaries to crash that were linked against Glibc-2.2
41libraries. This patch is only needed temporarily because we have static
42programs in <filename class="directory">/static/bin</filename> that might
43be linked against an older Glibc version (the one from the host
44distribution). We will install Glibc again at the end of this chapter to
45remove this patch so you'll have a pristine Glibc as the developers
46intended it.</para></listitem>
47</itemizedlist>
48
49<para><screen><userinput>patch -Np1 -i ../glibc-&glibc-patch-version;.patch</userinput></screen></para>
50
51<para>Glibc will check for the <filename>/etc/ld.so.conf</filename> file
52and abort with an error if the file is missing, so we create it.</para>
53
54<para><screen><userinput>touch /etc/ld.so.conf</userinput></screen></para>
55
56<para>It is recommended by the Glibc installation documentation to build
57Glibc outside of the source directory in a dedicated directory. Let's
58create such a directory and make it our CWD (Current Working
59Directory).</para>
60
61<para><screen><userinput>mkdir ../glibc-build &amp;&amp;
62cd ../glibc-build</userinput></screen></para>
63
64<para>Next, configure Glibc.</para>
65
66<para><screen><userinput>../glibc-&glibc-version;/configure --prefix=/usr \
67&nbsp;&nbsp;&nbsp;&nbsp;--disable-profile --enable-add-ons \
68&nbsp;&nbsp;&nbsp;&nbsp;--libexecdir=/usr/bin</userinput></screen></para>
69
70<para>During the configure stage you will see the following warning:</para>
71
72<blockquote><screen>configure: warning:
73*** These auxiliary programs are missing or too old: msgfmt
74*** some features will be disabled.
75*** Check the INSTALL file for required versions.</screen></blockquote>
76
77<para>The missing msgfmt (from the gettext package which we will install
78later in this chapter) won't cause any problems. msgfmt is used to generate
79the binary translation files that are used to make your system talk in a
80different language. Because these translation files have already been
81generated for you, there is no need for msgfmt. You'd only need msgfmt if
82you change the translation source files (the <filename>*.po</filename>
83files in the <filename class="directory">po</filename> subdirectory) which
84would require you to re-generate the binary files.</para>
85
86<para>The meaning of the configure switches are:</para>
87
88<itemizedlist>
89<listitem><para><userinput>--disable-profile:</userinput> This disables the
90building of libraries with profiling information. This command may be
91omitted if you plan to do profiling.</para></listitem>
92
93<listitem><para><userinput>--enable-add-ons:</userinput> This enables the
94add-on that we install with Glibc, linuxthreads</para></listitem>
95
96<listitem><para><userinput>--libexecdir=/usr/bin:</userinput> This will
97cause the pt_chown program to be installed in the /usr/bin
98directory.</para></listitem>
99</itemizedlist>
100
101<para>Because Glibc hasn't been installed yet, one of the tests that was
102run by the configure script failed. This test is supposed to test gcc to
103determine whether or not a cross-compiler is installed. However, Glibc
104needs to be installed already to run this test. Since the test failed, the
105configure script automatically assumed we do have a cross-compiler. So,
106we have to override that assumption by explicitly telling Glibc we're not
107cross-compiling.</para>
108
109<para><screen><userinput>echo "cross-compiling = no" &gt; configparms</userinput></screen></para>
110
111<para>We'll continue with compiling and installing Glibc. The Linuxthreads man
112pages are not going to be installed at this point because it requires a
113working Perl installation. We'll install Perl later on in this chapter,
114and the man pages will be installed when Glibc is installed for the second
115time at the end of this chapter.</para>
116
117<para><screen><userinput>make &amp;&amp;
118make install</userinput></screen></para>
119
120<para>Locales aren't installed by default so we install them now. Locales
121are used by Glibc to make your Linux system talk in a different language
122such as your native tongue.</para>
123
124<para><screen><userinput>make localedata/install-locales</userinput></screen></para>
125
126<para>An alternative to running <userinput>make
127localedata/install-locales</userinput> is to only install those locales
128which you need or want. This can be achieved using the localedef
129command. Information on this can be found in the INSTALL
130file in the glibc-&glibc-version; tree.</para>
131
132<para>To finish off the installation we'll reload Bash so it uses the new
133libnss files. This will get rid of the <emphasis>I have no name!</emphasis>
134message in the command prompt.</para>
135
136<para><screen><userinput>exec /static/bin/bash --login</userinput></screen></para>
137
138</sect2>
139
Note: See TracBrowser for help on using the repository browser.