source: BOOK/cross-tools/alpha/eglibc-headers.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: 6.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-cross-tools-eglibc-headers" role="wrap">
9  <?dbhtml filename="eglibc-headers.html"?>
10
11  <title>EGLIBC-&eglibc-version; Headers</title>
12
13  <indexterm zone="ch-cross-tools-eglibc-headers">
14    <primary sortas="a-EGLIBC">EGLIBC</primary>
15    <secondary>cross tools, headers</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 Headers</title>
24
25    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
26    href="../../final-system/common/eglibc.xml"
27    xpointer="xpointer(//*[@os='mp1'])"/>
28
29    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
30    href="../../final-system/common/eglibc.xml"
31    xpointer="xpointer(//*[@os='mp2'])"/>
32
33    <para os="s1">EGLIBC's <filename>configure</filename> script checks the
34    version of GCC, and will fail if it's less than 3.4. The next EGLIBC build
35    will use the GCC that will be installed into
36    <filename class="directory">/cross-tools</filename> in the next step.
37    However, in this step only the EGLIBC headers are being installed - no
38    compiling is taking place - so the GCC version isn't important. The
39    following sed removes the dependency of GCC 3.4.x:</para>
40
41<screen os="s2"><userinput>cp -v configure{,.orig}
42sed -e 's/3.4/3.[0-9]/g' configure.orig &gt; configure</userinput></screen>
43
44    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
45    href="../../final-system/common/eglibc.xml"
46    xpointer="xpointer(//*[@os='e'])"/>
47
48    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
49    href="../../final-system/common/eglibc.xml"
50    xpointer="xpointer(//*[@os='f'])"/>
51
52    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
53    href="../common/eglibc.xml"
54    xpointer="xpointer(//*[@os='dd'])"/>
55
56<screen os="de"><userinput>cat &gt; config.cache &lt;&lt; "EOF"
57libc_cv_forced_unwind=yes
58libc_cv_c_cleanup=yes
59libc_cv_mlong_double_128=yes
60libc_cv_alpha_tls=yes
61libc_cv_gnu89_inline=yes
62libc_cv_ssp=no
63EOF</userinput></screen>
64
65    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
66    href="../../final-system/common/eglibc.xml"
67    xpointer="xpointer(//*[@os='g'])"/>
68
69<screen os="s3"><userinput>CC=gcc ../eglibc-&eglibc-version;/configure --prefix=/tools \
70   --host=${CLFS_TARGET} --build=${CLFS_HOST} \
71   --disable-sanity-checks --enable-kernel=2.6.0 \
72   --with-headers=/tools/include --cache-file=config.cache \
73   --with-binutils=/cross-tools/${CLFS_TARGET}/bin</userinput></screen>
74
75    <note os="e1">
76      <para><emphasis>Any</emphasis> error message you see about nptl at this point
77      can safely be ignored.</para>
78   </note>
79
80    <variablelist os="ca">
81       <title>The meaning of the configure options:</title>
82
83          <varlistentry os="ca1">
84             <term><parameter>CC=gcc</parameter></term>
85             <listitem>
86                <para>Tells EGLIBC to use the host's GCC compiler.</para>
87             </listitem>
88          </varlistentry>
89
90         <varlistentry os="ca2">
91            <term><parameter>--prefix=/tools</parameter></term>
92            <listitem>
93               <para>This tells the configure script to prepare to install the
94                   package in the <filename class="directory">/tools</filename>
95                   directory.</para>
96             </listitem>
97         </varlistentry>
98
99         <varlistentry os="ca3">
100            <term><parameter>--build=${CLFS_HOST}</parameter></term>
101            <listitem>
102               <para>When used with --host, this creates a cross-architecture
103                  executable that creates files for ${CLFS_TARGET} but runs on ${CLFS_HOST}.</para>
104            </listitem>
105        </varlistentry>
106
107        <varlistentry os="ca4">
108           <term><parameter>--host=${CLFS_TARGET}</parameter></term>
109           <listitem>
110               <para>When used with --build, this creates a cross-architecture
111                  executable that creates files for ${CLFS_TARGET} but runs on ${CLFS_HOST}.</para>
112           </listitem>
113        </varlistentry>
114
115       <varlistentry os="ca5">
116          <term><parameter>--disable-sanity-checks</parameter></term>
117          <listitem>
118             <para>This switch disables any checks that are in place.</para>
119           </listitem>
120       </varlistentry>
121
122       <varlistentry os="ca6">
123            <term><parameter>--enable-kernel=2.6.0</parameter></term>
124            <listitem>
125               <para>This tells EGLIBC to compile the library with support
126               for 2.6.x Linux kernels.</para>
127            </listitem>
128       </varlistentry>
129
130       <varlistentry os="ca7">
131           <term><parameter>--with-headers=/tools/include</parameter></term>
132           <listitem>
133              <para>This tells EGLIBC to compile itself against the headers
134              recently installed to the <filename class="directory">/tools</filename>
135              directory, so that it knows exactly what features the kernel has
136              and can optimize itself accordingly.</para>
137           </listitem>
138       </varlistentry>
139
140       <varlistentry os="ca8">
141           <term><parameter>--with-binutils=/cross-tools/${CLFS_TARGET}/bin</parameter></term>
142           <listitem>
143              <para>This tells EGLIBC to use the Binutils for our specific target architecture.</para>
144            </listitem>
145       </varlistentry>
146
147       </variablelist>
148
149   <para os="cb">Now, install the headers:</para>
150
151<screen os="cd"><userinput>make install-headers</userinput></screen>
152
153   <para os="ce">Some files aren't installed by the above command, so
154    we will copy the additional header files we need.</para>
155
156   <para os="cf">First we will copy a common file over to <filename
157   class="directory">/tools/include</filename>:</para>
158
159<screen os="cg"><userinput>install -dv /tools/include/bits
160cp -v bits/stdio_lim.h /tools/include/bits</userinput></screen>
161
162   <para os="ch">Now we will create a blank stub file:</para>
163
164<screen os="ci"><userinput>touch /tools/include/gnu/stubs.h</userinput></screen>
165
166   <para os="cj">Another header is needed for NPTL:</para>
167
168<screen><userinput>cp -v ../eglibc-&eglibc-version;/nptl/sysdeps/unix/sysv/linux/alpha/bits/pthreadtypes.h \
169    /tools/include/bits/</userinput></screen>
170
171  </sect2>
172
173  <sect2 role="content">
174    <title/>
175
176    <para>Details on this package are located in <xref
177    linkend="contents-eglibc" role="."/></para>
178
179  </sect2>
180
181</sect1>
Note: See TracBrowser for help on using the repository browser.