source: BOOK/final-system/x86_64-64/glibc.xml @ 6aad380

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since 6aad380 was 6aad380, checked in by Jim Gifford <clfs@…>, 18 years ago

r677@server (orig r675): manuel | 2005-11-10 03:13:57 -0800
Including patches.ent from general.ent

  • Property mode set to 100644
File size: 5.3 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3  "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4  <!ENTITY % general-entities SYSTEM "../../general.ent">
5  %general-entities;
6]>
7
8<sect1 id="ch-system-glibc" role="wrap">
9  <?dbhtml filename="glibc.html"?>
10
11  <title>Glibc-&glibc-version;</title>
12
13  <indexterm zone="ch-system-glibc">
14    <primary sortas="a-Glibc">Glibc</primary>
15  </indexterm>
16
17  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
18  href="../common/glibc.xml"
19  xpointer="xpointer(//*[@role='package'])"/>
20
21  <sect2 role="installation">
22    <title>Installation of Glibc</title>
23
24    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
25    href="../common/glibc.xml"
26    xpointer="xpointer(//*[@os='z'])"/>
27
28    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
29    href="../common/glibc.xml"
30    xpointer="xpointer(//*[@os='b'])"/>
31
32    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
33    href="../common/glibc.xml"
34    xpointer="xpointer(//*[@os='c'])"/>
35
36    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
37    href="../common/glibc.xml"
38    xpointer="xpointer(//*[@os='d'])"/>
39
40    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
41    href="../common/glibc.xml"
42    xpointer="xpointer(//*[@os='e'])"/>
43
44    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
45    href="../common/glibc.xml"
46    xpointer="xpointer(//*[@os='f'])"/>
47
48    <para>Now we make sure the Glibc goes into
49    <filename class="directory">/lib</filename>:</para>
50
51<screen><userinput>echo "slibdir=/lib" &gt;&gt; configparms</userinput></screen>
52
53    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
54    href="../common/glibc.xml"
55    xpointer="xpointer(//*[@os='g'])"/>
56
57<screen><userinput>../glibc-&glibc-version;/configure --prefix=/usr \
58    --disable-profile --enable-add-ons --enable-kernel=2.6.0 \
59    --libexecdir=/usr/lib/glibc --libdir=/usr/lib</userinput></screen>
60
61    <variablelist>
62      <title>The meaning of the new configure option:</title>
63
64      <varlistentry>
65        <term><parameter>--libexecdir=/usr/lib/glibc</parameter></term>
66        <listitem>
67          <para>This changes the location of the <command>pt_chown</command>
68          program from its default of <filename
69          class="directory">/usr/libexec</filename> to <filename
70          class="directory">/usr/lib64/glibc</filename>.</para>
71        </listitem>
72      </varlistentry>
73    </variablelist>
74
75    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
76    href="../common/glibc.xml"
77    xpointer="xpointer(//*[@os='j'])"/>
78
79    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
80    href="../common/glibc.xml"
81    xpointer="xpointer(//*[@os='k'])"/>
82
83    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
84    href="../common/glibc.xml"
85    xpointer="xpointer(//*[@os='l'])"/>
86
87    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
88    href="../common/glibc.xml"
89    xpointer="xpointer(//*[@os='m'])"/>
90
91    <!-- test comments from 64bit which is clean -->
92    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
93    href="../multilib/glibc-64bit.xml"
94    xpointer="xpointer(//*[@os='n'])"/>
95
96    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
97    href="../common/glibc.xml"
98    xpointer="xpointer(//*[@os='q'])"/>
99
100    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
101    href="../common/glibc.xml"
102    xpointer="xpointer(//*[@os='r'])"/>
103
104    <para>The install will finish by checking that everything is correctly installed.
105    Unfortunately, it will test for a multilib installation. On common this means
106    it will try to test the non-existent 32-bit loader which has a different name
107    from the 64-bit loader (unlike on other 64-bit architectures).  We fool it by
108    creating a symlink to the real loader.</para>
109
110    <screen><userinput>ln -s ld-2.3.90.so /lib/ld-linux.so.2</userinput></screen>
111
112    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
113    href="../common/glibc.xml"
114    xpointer="xpointer(//*[@os='s'])"/>
115
116    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
117    href="../common/glibc.xml"
118    xpointer="xpointer(//*[@os='t'])"/>
119
120    <para>Now we can remove this symlink.  We also need to correct the <command>
121    /usr/bin/ldd</command> script - if you look at this, you will see it references
122    not only the 32-bit linker, but also /lib64 where it thinks the 64-bit linker
123    is. The following <command>sed</command> will correct this.</para>
124
125    <screen><userinput>
126    rm /lib/ld-linux.so.2
127    cp /usr/bin/ldd{,.bak}
128    sed '/RTLDLIST/s%/ld-linux.so.2 /lib64%%' /usr/bin/ldd.bak >/usr/bin/ldd
129    </userinput></screen>
130
131    <para>Check the script to make sure the sed worked correctly, then delete
132    the backup.</para>
133
134    <screen><userinput>rm /usr/bin/ldd.bak</userinput></screen>
135
136  </sect2>
137
138  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
139  href="../common/glibc.xml"
140  xpointer="xpointer(id('i18n-glibc'))"/>
141
142  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
143  href="../common/glibc.xml"
144  xpointer="xpointer(id('conf-glibc'))"/>
145
146  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
147  href="../common/glibc.xml"
148  xpointer="xpointer(id('conf-ld'))"/>
149
150  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
151  href="../common/glibc.xml"
152  xpointer="xpointer(id('contents-glibc'))"/>
153
154</sect1>
Note: See TracBrowser for help on using the repository browser.