[bf8c11f] | 1 | <?xml version="1.0" encoding="ISO-8859-1"?>
|
---|
| 2 | <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
|
---|
| 3 | "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
|
---|
| 4 | <!ENTITY % general-entities SYSTEM "../../general.ent">
|
---|
| 5 | %general-entities;
|
---|
| 6 | ]>
|
---|
| 7 |
|
---|
| 8 | <sect1 id="ch-cross-tools-glibc-64" role="wrap">
|
---|
| 9 | <?dbhtml filename="glibc-64.html"?>
|
---|
| 10 |
|
---|
| 11 | <title>Glibc-&glibc-version; 64-Bit</title>
|
---|
| 12 |
|
---|
| 13 | <indexterm zone="ch-cross-tools-glibc-64">
|
---|
| 14 | <primary sortas="a-Glibc">Glibc</primary>
|
---|
| 15 | <secondary>cross tools, 64 Bit</secondary>
|
---|
| 16 | </indexterm>
|
---|
| 17 |
|
---|
[48f8316] | 18 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 19 | href="../../final-system/common/glibc.xml"
|
---|
| 20 | xpointer="xpointer(//*[@role='package'])"/>
|
---|
[bf8c11f] | 21 |
|
---|
| 22 | <sect2 role="installation">
|
---|
| 23 | <title>Installation of Glibc</title>
|
---|
| 24 |
|
---|
| 25 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 26 | href="glibc.xml"
|
---|
| 27 | xpointer="xpointer(//*[@os='da'])"/>
|
---|
| 28 |
|
---|
| 29 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 30 | href="glibc.xml"
|
---|
| 31 | xpointer="xpointer(//*[@os='db'])"/>
|
---|
| 32 |
|
---|
| 33 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 34 | href="glibc.xml"
|
---|
| 35 | xpointer="xpointer(//*[@os='dc'])"/>
|
---|
| 36 |
|
---|
| 37 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 38 | href="glibc.xml"
|
---|
| 39 | xpointer="xpointer(//*[@os='e'])"/>
|
---|
| 40 |
|
---|
| 41 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 42 | href="glibc.xml"
|
---|
| 43 | xpointer="xpointer(//*[@os='f'])"/>
|
---|
| 44 |
|
---|
| 45 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 46 | href="glibc.xml"
|
---|
| 47 | xpointer="xpointer(//*[@os='dd'])"/>
|
---|
| 48 |
|
---|
| 49 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 50 | href="glibc.xml"
|
---|
| 51 | xpointer="xpointer(//*[@os='de'])"/>
|
---|
| 52 |
|
---|
[c48c555] | 53 | <para os="n1">Now we make sure the Glibc goes into <filename
|
---|
[bf8c11f] | 54 | class="directory">/tools/lib64</filename>:</para>
|
---|
| 55 |
|
---|
[c48c555] | 56 | <screen os="n2"><userinput>echo "slibdir=/tools/lib64" >> configparms</userinput></screen>
|
---|
[bf8c11f] | 57 |
|
---|
| 58 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 59 | href="glibc.xml"
|
---|
| 60 | xpointer="xpointer(//*[@os='g'])"/>
|
---|
| 61 |
|
---|
[c48c555] | 62 | <screen os="df"><userinput>BUILD_CC="gcc" CC="${LFS_TARGET}-gcc ${BUILD64}" \
|
---|
[bf8c11f] | 63 | AR="${LFS_TARGET}-ar" RANLIB="${LFS_TARGET}-ranlib" \
|
---|
| 64 | ../glibc-&glibc-version;/configure --prefix=/tools \
|
---|
| 65 | --host=${LFS_TARGET} --build=${LFS_HOST} --libdir=/tools/lib64 \
|
---|
| 66 | --disable-profile --enable-add-ons \
|
---|
| 67 | --with-tls --enable-kernel=2.6.0 --with-__thread \
|
---|
| 68 | --with-binutils=/cross-tools/bin --with-headers=/tools/include \
|
---|
| 69 | --cache-file=config.cache</userinput></screen>
|
---|
| 70 |
|
---|
[c48c555] | 71 | <variablelist os="dg">
|
---|
[bf8c11f] | 72 | <title>The meaning of the new configure options:</title>
|
---|
| 73 |
|
---|
| 74 | <varlistentry os="fa1">
|
---|
| 75 | <term><parameter>CC="${LFS_TARGET}-gcc ${BUILD64}"</parameter></term>
|
---|
| 76 | <listitem>
|
---|
[c48c555] | 77 | <para>Forces GLIBC to utilize our target architecture GCC utilizing
|
---|
| 78 | the 64 BIT flags.</para>
|
---|
[bf8c11f] | 79 | </listitem>
|
---|
| 80 | </varlistentry>
|
---|
| 81 |
|
---|
[c48c555] | 82 | <varlistentry os="fa2">
|
---|
[bf8c11f] | 83 | <term><parameter>--libdir=/tools/lib64</parameter></term>
|
---|
| 84 | <listitem>
|
---|
[f32f537] | 85 | <para>Puts GLIBC into /tools/lib64 instead of /tools/lib.</para>
|
---|
[bf8c11f] | 86 | </listitem>
|
---|
| 87 | </varlistentry>
|
---|
| 88 |
|
---|
| 89 | </variablelist>
|
---|
| 90 |
|
---|
[c48c555] | 91 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 92 | href="glibc.xml"
|
---|
| 93 | xpointer="xpointer(//*[@os='dh'])"/>
|
---|
| 94 |
|
---|
| 95 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 96 | href="glibc.xml"
|
---|
| 97 | xpointer="xpointer(//*[@os='di'])"/>
|
---|
| 98 |
|
---|
[bf8c11f] | 99 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 100 | href="glibc.xml"
|
---|
| 101 | xpointer="xpointer(//*[@os='dj'])"/>
|
---|
| 102 |
|
---|
| 103 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 104 | href="glibc.xml"
|
---|
| 105 | xpointer="xpointer(//*[@os='dk'])"/>
|
---|
| 106 |
|
---|
| 107 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 108 | href="glibc.xml"
|
---|
| 109 | xpointer="xpointer(//*[@os='dl'])"/>
|
---|
| 110 |
|
---|
| 111 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 112 | href="glibc.xml"
|
---|
| 113 | xpointer="xpointer(//*[@os='dm'])"/>
|
---|
| 114 |
|
---|
[c48c555] | 115 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 116 | href="glibc.xml"
|
---|
| 117 | xpointer="xpointer(//*[@os='dn'])"/>
|
---|
| 118 |
|
---|
[bf8c11f] | 119 | </sect2>
|
---|
| 120 |
|
---|
| 121 | <sect2 role="content">
|
---|
| 122 | <title/>
|
---|
| 123 |
|
---|
| 124 | <para>Details on this package are located in <xref
|
---|
| 125 | linkend="contents-glibc" role="."/></para>
|
---|
| 126 |
|
---|
| 127 | </sect2>
|
---|
| 128 |
|
---|
| 129 | </sect1>
|
---|