source: BOOK/cross-tools/mips64/glibc-n32.xml @ 11e2d29

clfs-3.0.0-systemdsystemd
Last change on this file since 11e2d29 was 11e2d29, checked in by Chris Staub <chris@…>, 10 years ago

Added entity for minimum kernel version

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