source: BOOK/cross-tools/common/eglibc.xml @ c8d4414

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since c8d4414 was c8d4414, checked in by Joe Ciccone <jciccone@…>, 14 years ago

Add a patch to EGlibc to fix a compatibility issue with Make 3.82.

  • Property mode set to 100644
File size: 7.0 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-cross-tools-eglibc" role="wrap">
9  <?dbhtml filename="eglibc.html"?>
10
11  <title>EGLIBC-&eglibc-version;</title>
12
13  <indexterm zone="ch-cross-tools-eglibc">
14    <primary sortas="a-EGLIBC">EGLIBC</primary>
15    <secondary>cross tools</secondary>
16  </indexterm>
17
18  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
19  href="../../final-system/common/eglibc.xml"
20  xpointer="xpointer(//*[@role='package'])"/>
21
22  <sect2 role="installation">
23    <title>Installation of EGLIBC</title>
24
25    <para os="da">It should be noted that compiling EGLIBC in any way other than
26    the method suggested in this book puts the stability of the system at
27    risk.</para>
28
29    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
30    href="../../final-system/common/eglibc.xml"
31    xpointer="xpointer(//*[@os='mp1'])"/>
32
33    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
34    href="../../final-system/common/eglibc.xml"
35    xpointer="xpointer(//*[@os='mp2'])"/>
36
37    <para os="db">Disable linking to <filename>libgcc_eh</filename>:</para>
38
39<screen os="dc"><userinput>cp -v Makeconfig{,.orig}
40sed -e 's/-lgcc_eh//g' Makeconfig.orig > Makeconfig</userinput></screen>
41
42    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
43    href="../../final-system/common/eglibc.xml"
44    xpointer="xpointer(//*[@os='e'])"/>
45
46    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
47    href="../../final-system/common/eglibc.xml"
48    xpointer="xpointer(//*[@os='f'])"/>
49
50    <para os="dd">The following lines need to be added to
51    <filename>config.cache</filename> for EGLIBC to support NPTL:</para>
52
53<screen os="de"><userinput>cat &gt; config.cache &lt;&lt; "EOF"
54libc_cv_forced_unwind=yes
55libc_cv_c_cleanup=yes
56libc_cv_gnu89_inline=yes
57libc_cv_ssp=no
58EOF</userinput></screen>
59
60    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
61    href="../../final-system/common/eglibc.xml"
62    xpointer="xpointer(//*[@os='g'])"/>
63
64<screen os="df"><userinput>BUILD_CC="gcc" CC="${CLFS_TARGET}-gcc" \
65    AR="${CLFS_TARGET}-ar" RANLIB="${CLFS_TARGET}-ranlib" \
66    ../eglibc-&eglibc-version;/configure --prefix=/tools \
67    --host=${CLFS_TARGET} --build=${CLFS_HOST} \
68    --disable-profile --enable-add-ons \
69    --with-tls --enable-kernel=2.6.0 --with-__thread \
70    --with-binutils=/cross-tools/bin --with-headers=/tools/include \
71    --cache-file=config.cache</userinput></screen>
72
73    <variablelist os="dg">
74      <title>The meaning of the new configure options:</title>
75
76      <varlistentry os="dg1">
77        <term><parameter>BUILD_CC="gcc"</parameter></term>
78        <listitem>
79          <para>This sets EGLIBC to use the current compiler on our system. This is
80          used to create the tools EGLIBC uses during its build.</para>
81        </listitem>
82      </varlistentry>
83
84      <varlistentry os="dg2">
85        <term><parameter>CC="${CLFS_TARGET}-gcc"</parameter></term>
86        <listitem>
87          <para>This forces EGLIBC to use the GCC compiler that we made for our target
88          architecture.</para>
89        </listitem>
90      </varlistentry>
91
92      <varlistentry os="dg3">
93        <term><parameter>AR="${CLFS_TARGET}-ar"</parameter></term>
94        <listitem>
95          <para>This forces EGLIBC to use the <command>ar</command> utility
96          we made for our target architecture.</para>
97        </listitem>
98      </varlistentry>
99
100      <varlistentry os="dg4">
101        <term><parameter>RANLIB="${CLFS_TARGET}-ranlib"</parameter></term>
102        <listitem>
103          <para>This forces EGLIBC to use the <command>ranlib</command> utility
104          we made for our target architecture.</para>
105        </listitem>
106      </varlistentry>
107
108      <varlistentry os="dg5">
109        <term><parameter>--disable-profile</parameter></term>
110        <listitem>
111          <para>This builds the libraries without profiling information.
112          Omit this option if profiling on the temporary tools is necessary.</para>
113        </listitem>
114      </varlistentry>
115
116      <varlistentry os="dg6">
117        <term><parameter>--enable-add-ons</parameter></term>
118        <listitem>
119          <para>This tells EGLIBC to utilize all add-ons that are
120          available.</para>
121        </listitem>
122      </varlistentry>
123
124      <varlistentry os="dg7">
125        <term><parameter>--with-tls</parameter></term>
126        <listitem>
127          <para>This tells EGLIBC to use Thread Local Storage.</para>
128        </listitem>
129      </varlistentry>
130
131      <varlistentry os="dg8">
132        <term><parameter>--enable-kernel=2.6.0</parameter></term>
133        <listitem>
134          <para>This tells EGLIBC to compile the library with support
135          for 2.6.x Linux kernels.</para>
136        </listitem>
137      </varlistentry>
138
139      <varlistentry os="dg9">
140        <term><parameter>--with-__thread</parameter></term>
141        <listitem>
142          <para>This tells EGLIBC to use use the __thread for libc and
143          libpthread builds.</para>
144        </listitem>
145      </varlistentry>
146
147      <varlistentry os="dg10">
148        <term><parameter>--with-binutils=/cross-tools/bin</parameter></term>
149        <listitem>
150          <para>This tells EGLIBC to use the Binutils that are specific to
151          our target architecture.</para>
152        </listitem>
153      </varlistentry>
154
155      <varlistentry os="dg11">
156        <term><parameter>--with-headers=/tools/include</parameter></term>
157        <listitem>
158          <para>This tells EGLIBC to compile itself against the headers
159          recently installed to the <filename class="directory">/tools</filename>
160          directory, so that it knows exactly what features the kernel has
161          and can optimize itself accordingly.</para>
162        </listitem>
163      </varlistentry>
164
165      <varlistentry os="dg12">
166        <term><parameter>--cache-file=config.cache</parameter></term>
167        <listitem>
168          <para>This tells EGLIBC to utilize a premade cache file.</para>
169        </listitem>
170      </varlistentry>
171
172    </variablelist>
173
174    <para os="dh">During this stage the following warning might appear:</para>
175
176<blockquote os="di"><screen><computeroutput>configure: WARNING:
177*** These auxiliary programs are missing or
178*** incompatible versions: msgfmt
179*** some features will be disabled.
180*** Check the INSTALL file for required versions.</computeroutput></screen></blockquote>
181
182    <para os="dj">The missing or incompatible <command>msgfmt</command> program is
183    generally harmless. This <command>msgfmt</command> program is part of the
184    Gettext package which the host distribution should provide.</para>
185
186    <para os="dk">Compile the package:</para>
187
188<screen os="dl"><userinput>make</userinput></screen>
189
190    <para os="dm">Install the package:</para>
191
192<screen os="dn"><userinput>make install</userinput></screen>
193
194  </sect2>
195
196  <sect2 role="content">
197    <title/>
198
199    <para>Details on this package are located in <xref
200    linkend="contents-eglibc" role="."/></para>
201
202  </sect2>
203
204</sect1>
Note: See TracBrowser for help on using the repository browser.