source: BOOK/cross-tools/multilib/eglibc-64bit.xml@ d73525f

clfs-2.1 clfs-3.0.0-systemd clfs-3.0.0-sysvinit systemd sysvinit
Last change on this file since d73525f was 82b753e0, checked in by Chris Staub <chris@…>, 12 years ago

EGLIBC no longer needs --enable-add-ons

  • Property mode set to 100644
File size: 4.3 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-eglibcc-64" role="wrap">
9 <?dbhtml filename="eglibc-64.html"?>
[3f8be484]10
[093b0e8]11 <title>EGLIBC-&eglibc-version; 64-Bit</title>
[3f8be484]12
[093b0e8]13 <indexterm zone="ch-cross-tools-eglibcc-64">
14 <primary sortas="a-EGLIBC">EGLIBC</primary>
[3f8be484]15 <secondary>cross tools, 64 Bit</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
[dabbced]25 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[093b0e8]26 href="eglibc.xml"
[3f8be484]27 xpointer="xpointer(//*[@os='da'])"/>
28
[dabbced]29 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[093b0e8]30 href="eglibc.xml"
[3f8be484]31 xpointer="xpointer(//*[@os='db'])"/>
32
[dabbced]33 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[093b0e8]34 href="eglibc.xml"
[3f8be484]35 xpointer="xpointer(//*[@os='dc'])"/>
36
[dabbced]37 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[093b0e8]38 href="eglibc.xml"
[3f8be484]39 xpointer="xpointer(//*[@os='e'])"/>
40
[dabbced]41 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[093b0e8]42 href="eglibc.xml"
[3f8be484]43 xpointer="xpointer(//*[@os='f'])"/>
44
[dabbced]45 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[093b0e8]46 href="eglibc.xml"
[3f8be484]47 xpointer="xpointer(//*[@os='dd'])"/>
48
[dabbced]49 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[093b0e8]50 href="eglibc.xml"
[3f8be484]51 xpointer="xpointer(//*[@os='de'])"/>
52
[093b0e8]53 <para os="n1">Tell EGLIBC to install its 64-bit libraries into <filename
[3f8be484]54 class="directory">/tools/lib64</filename>:</para>
55
[bc2e3fa]56<screen os="n2"><userinput>echo "slibdir=/tools/lib64" &gt;&gt; configparms</userinput></screen>
[3f8be484]57
[dabbced]58 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[093b0e8]59 href="eglibc.xml"
[3f8be484]60 xpointer="xpointer(//*[@os='g'])"/>
61
[07114c98]62<screen os="df"><userinput>BUILD_CC="gcc" CC="${CLFS_TARGET}-gcc ${BUILD64}" \
63 AR="${CLFS_TARGET}-ar" RANLIB="${CLFS_TARGET}-ranlib" \
[093b0e8]64 ../eglibc-&eglibc-version;/configure --prefix=/tools \
[07114c98]65 --host=${CLFS_TARGET} --build=${CLFS_HOST} --libdir=/tools/lib64 \
[82b753e0]66 --disable-profile --with-tls --enable-kernel=2.6.32 --with-__thread \
[bc2e3fa]67 --with-binutils=/cross-tools/bin --with-headers=/tools/include \
[3f8be484]68 --cache-file=config.cache</userinput></screen>
69
[d3a4fc0]70 <variablelist os="dg">
[3f8be484]71 <title>The meaning of the new configure options:</title>
72
73 <varlistentry os="fa1">
[07114c98]74 <term><parameter>CC="${CLFS_TARGET}-gcc ${BUILD64}"</parameter></term>
[3f8be484]75 <listitem>
[093b0e8]76 <para>Forces EGLIBC to build using our target architecture GCC
[040521bc]77 utilizing the 64 Bit flags.</para>
[3f8be484]78 </listitem>
79 </varlistentry>
80
[d3a4fc0]81 <varlistentry os="fa2">
[3f8be484]82 <term><parameter>--libdir=/tools/lib64</parameter></term>
83 <listitem>
[093b0e8]84 <para>Puts EGLIBC into /tools/lib64 instead of /tools/lib.</para>
[3f8be484]85 </listitem>
86 </varlistentry>
87
88 </variablelist>
89
[dabbced]90 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[093b0e8]91 href="eglibc.xml"
[d3a4fc0]92 xpointer="xpointer(//*[@os='dh'])"/>
93
[dabbced]94 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[093b0e8]95 href="eglibc.xml"
[d3a4fc0]96 xpointer="xpointer(//*[@os='di'])"/>
97
[dabbced]98 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[093b0e8]99 href="eglibc.xml"
[3f8be484]100 xpointer="xpointer(//*[@os='dj'])"/>
101
[dabbced]102 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[093b0e8]103 href="eglibc.xml"
[3f8be484]104 xpointer="xpointer(//*[@os='dk'])"/>
105
[dabbced]106 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[093b0e8]107 href="eglibc.xml"
[3f8be484]108 xpointer="xpointer(//*[@os='dl'])"/>
109
[dabbced]110 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[093b0e8]111 href="eglibc.xml"
[3f8be484]112 xpointer="xpointer(//*[@os='dm'])"/>
113
[dabbced]114 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[093b0e8]115 href="eglibc.xml"
[d3a4fc0]116 xpointer="xpointer(//*[@os='dn'])"/>
117
[f1778eba]118 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
119 href="../../final-system/common/eglibc.xml"
120 xpointer="xpointer(//*[@os='ra'])"/>
121
122 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
123 href="../common/eglibc.xml"
124 xpointer="xpointer(//*[@os='rb'])"/>
125
[3f8be484]126 </sect2>
127
128 <sect2 role="content">
129 <title/>
130
131 <para>Details on this package are located in <xref
[093b0e8]132 linkend="contents-eglibc" role="."/></para>
[3f8be484]133
134 </sect2>
135
136</sect1>
Note: See TracBrowser for help on using the repository browser.