source: BOOK/cross-tools/multilib/glibc-64bit.xml @ 7cd7f99

systemd
Last change on this file since 7cd7f99 was 7cd7f99, checked in by Chris Staub <chris@…>, 8 years ago

Put one configure option per line

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