source: BOOK/final-system/mips64/eglibc-n32.xml@ eb4a0c5

clfs-3.0.0-systemd clfs-3.0.0-sysvinit systemd sysvinit
Last change on this file since eb4a0c5 was 00a58649, checked in by William Harrington <kb0iic@…>, 11 years ago

Add a sed for eglibc to detect Make-4.x

  • Property mode set to 100644
File size: 4.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
[093b0e8]8<sect1 id="ch-system-eglibc-n32" role="wrap">
9 <?dbhtml filename="eglibc-n32.html"?>
[3f8be484]10
[093b0e8]11 <title>EGLIBC-&eglibc-version; N32</title>
[3f8be484]12
[093b0e8]13 <indexterm zone="ch-system-eglibc-n32">
14 <primary sortas="a-EGLIBC">EGLIBC</primary>
[3f8be484]15 </indexterm>
16
[dabbced]17 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[093b0e8]18 href="eglibc.xml"
[663c5a6]19 xpointer="xpointer(//*[@role='package'])"/>
[3f8be484]20
21 <sect2 role="installation">
[093b0e8]22 <title>Installation of EGLIBC</title>
[3f8be484]23
[22cd957]24 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
25 href="../common/eglibc.xml"
26 xpointer="xpointer(//*[@os='l1'])"/>
27
28 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
29 href="../common/eglibc.xml"
30 xpointer="xpointer(//*[@os='l2'])"/>
31
[dabbced]32 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[d8f87e8]33 href="../common/eglibc.xml"
[c0bc7c4]34 xpointer="xpointer(//*[@os='l3'])"/>
[d8f87e8]35
[a32a66d]36<screen os="l4"><userinput>LINKER=$(readelf -l /tools/bin/bash | sed -n 's@.*interpret.*/tools\(.*\)]$@\1@p')
[d8f87e8]37sed -i "s|libs -o|libs -L/usr/lib32 -Wl,-dynamic-linker=${LINKER} -o|" \
38 scripts/test-installation.pl
39unset LINKER</userinput></screen>
40
[dabbced]41 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[093b0e8]42 href="eglibc.xml"
[3f8be484]43 xpointer="xpointer(//*[@os='b'])"/>
44
[dabbced]45 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[093b0e8]46 href="eglibc-64bit.xml"
[814837a8]47 xpointer="xpointer(//*[@os='m3'])"/>
48
[dabbced]49 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[093b0e8]50 href="eglibc-64bit.xml"
[814837a8]51 xpointer="xpointer(//*[@os='m4'])"/>
52
[00a58649]53 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
54 href="../common/eglibc.xml"
55 xpointer="xpointer(//*[@os='s1'])"/>
56
57 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
58 href="../common/eglibc.xml"
59 xpointer="xpointer(//*[@os='s2'])"/>
60
[dabbced]61 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[093b0e8]62 href="eglibc.xml"
[3f8be484]63 xpointer="xpointer(//*[@os='e'])"/>
64
[dabbced]65 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[093b0e8]66 href="eglibc.xml"
[3f8be484]67 xpointer="xpointer(//*[@os='f'])"/>
68
[093b0e8]69 <para os="m1">Tell EGLIBC to install its 32-bit libraries into
[3f8be484]70 <filename class="directory">/lib32</filename>:</para>
71
[d3a4fc0]72<screen os="m2"><userinput>echo "slibdir=/lib32" &gt;&gt; configparms</userinput></screen>
[3f8be484]73
[dabbced]74 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[093b0e8]75 href="eglibc.xml"
[3f8be484]76 xpointer="xpointer(//*[@os='g'])"/>
77
[d3a4fc0]78<screen os="h"><userinput>CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" \
[093b0e8]79 ../eglibc-&eglibc-version;/configure --prefix=/usr \
[82b753e0]80 --disable-profile --enable-kernel=2.6.32 \
[52ed4da]81 --libexecdir=/usr/lib32/eglibc --libdir=/usr/lib32 \
82 --enable-obsolete-rpc</userinput></screen>
[3f8be484]83
[d3a4fc0]84 <variablelist os="i">
[3f8be484]85 <title>The meaning of the new configure option:</title>
86
87 <varlistentry>
[093b0e8]88 <term><parameter>--libexecdir=/usr/lib32/eglibc</parameter></term>
[3f8be484]89 <listitem>
[b5bd3744]90 <para>This changes the location of the <command>getconf</command>
[3f8be484]91 program from its default of <filename
92 class="directory">/usr/libexec</filename> to <filename
[093b0e8]93 class="directory">/usr/lib32/eglibc</filename>.</para>
[3f8be484]94 </listitem>
95 </varlistentry>
96 </variablelist>
97
[dabbced]98 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[093b0e8]99 href="eglibc.xml"
[3f8be484]100 xpointer="xpointer(//*[@os='j'])"/>
101
[dabbced]102 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[093b0e8]103 href="eglibc.xml"
[3f8be484]104 xpointer="xpointer(//*[@os='k'])"/>
105
[dabbced]106 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[093b0e8]107 href="eglibc.xml"
[3f8be484]108 xpointer="xpointer(//*[@os='l'])"/>
109
[dabbced]110 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[093b0e8]111 href="eglibc.xml"
[3f8be484]112 xpointer="xpointer(//*[@os='m'])"/>
113
[dabbced]114 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[093b0e8]115 href="../multilib/eglibc-64bit.xml"
[d3a4fc0]116 xpointer="xpointer(//*[@os='n'])"/>
117
[dabbced]118 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[093b0e8]119 href="../multilib/eglibc-64bit.xml"
[d3a4fc0]120 xpointer="xpointer(//*[@os='o'])"/>
121
[dabbced]122 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[093b0e8]123 href="../multilib/eglibc-64bit.xml"
[94e6142]124 xpointer="xpointer(//*[@os='p'])"/>
[3f8be484]125
[dabbced]126 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[093b0e8]127 href="eglibc.xml"
[3f8be484]128 xpointer="xpointer(//*[@os='s'])"/>
129
[dabbced]130 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[093b0e8]131 href="eglibc.xml"
[3f8be484]132 xpointer="xpointer(//*[@os='t'])"/>
133
134 </sect2>
135
136 <sect2 role="content">
137 <title/>
138
139 <para>Details on this package are located in <xref
[093b0e8]140 linkend="contents-eglibc" role="."/></para>
[3f8be484]141
142 </sect2>
143
144</sect1>
Note: See TracBrowser for help on using the repository browser.