source: BOOK/cross-tools/alpha/glibc-headers.xml@ a60e4c5

clfs-1.2 clfs-2.1 clfs-3.0.0-systemd clfs-3.0.0-sysvinit systemd sysvinit
Last change on this file since a60e4c5 was d018b81, checked in by Manuel Canales Esparcia <manuel@…>, 17 years ago

Several fixes for PDF look.

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