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