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

clfs-2.1 clfs-3.0.0-systemd clfs-3.0.0-sysvinit systemd sysvinit
Last change on this file since bf398d4 was da4d9d8, checked in by William Harrington <kb0iic@…>, 12 years ago

Add missing back slashes to end of configure commands.

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