source: BOOK/cross-tools/alpha/eglibc-headers.xml@ e8d0520

clfs-2.1 clfs-3.0.0-systemd clfs-3.0.0-sysvinit systemd sysvinit
Last change on this file since e8d0520 was 52ed4da, checked in by William Harrington <kb0iic@…>, 11 years ago

Update eglibc install commands for 2.17 update and add time zone data install.

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