source: final-system/multilib/perl-64bit.xml@ 73b79203

Last change on this file since 73b79203 was f6bcc50, checked in by Jim Gifford <clfs@…>, 19 years ago

r803@server (orig r801): jim | 2005-12-02 08:36:39 -0800

r880@server: jim | 2005-12-02 08:36:09 -0800
Text Updates from G. Moko


  • Property mode set to 100644
File size: 4.0 KB
RevLine 
[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-system-perl" role="wrap">
9 <?dbhtml filename="perl-64bit.html"?>
10
11 <title>Perl-&perl-version;</title>
12
13 <indexterm zone="ch-system-perl">
14 <primary sortas="a-Perl">Perl</primary>
15 </indexterm>
16
[a1a7bae]17 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
18 href="../common/perl.xml"
19 xpointer="xpointer(//*[@role='package'])"/>
[bf8c11f]20
21 <sect2 role="installation">
22 <title>Installation of Perl</title>
23
[e6423a01]24 <para os="m1">In multilib builds we install compilers and libraries for each available
[bf8c11f]25 architecture. The description below says that perl installs several hundred
26 libraries, but they are used by invoking <command>perl</command>, not by linking
27 to them with <command>ld</command>. Although it is possible to install perl for
28 32 bits, move it to a different name, and then install the 64-bit version, it is
29 almost always invoked as just <command>perl</command>. That means only the
30 libraries and modules for the last version installed will be accessible. We
[a1a7bae]31 therefore only install one version.</para>
[bf8c11f]32
[e6423a01]33 <para os="p1">Perl does not, by default, know about library directories with names other
[bf8c11f]34 than lib, such as lib64. The following patch will allow it to install to lib64.</para>
35
[e6423a01]36<screen os="p2"><userinput>patch -Np1 -i ../&perl-multilib-patch;</userinput></screen>
[bf8c11f]37
[e6423a01]38 <para os="p3">There is a further (possibly cosmetic) anomaly - if we install perl and
[bf8c11f]39 then run <command>perl -V</command> it will claim that libc is in /lib. The
40 following patch fixes this, but only takes effect when <command>make install
41 </command> is run.</para>
42
[e6423a01]43<screen os="p4"><userinput>patch -Np1 -i ../&perl-lib64-patch;</userinput></screen>
[bf8c11f]44
[e6423a01]45 <para os="m2">We still need to tell perl to actually use lib64</para>
[bf8c11f]46
[e6423a01]47<screen os="m3"><userinput>echo 'installstyle="lib64/perl5"' >>hints/linux.sh</userinput></screen>
[bf8c11f]48
49 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
50 href="../common/perl.xml"
51 xpointer="xpointer(//*[@os='a'])"/>
52
[e6423a01]53<screen os="b"><userinput>./configure.gnu --prefix=/usr -Dpager="/bin/less -isR" \
[bf8c11f]54 -Dlibpth="/usr/local/lib64 /lib64 /usr/lib64" \
55 -Dcc="gcc ${BUILD64}"</userinput></screen>
56
[e6423a01]57 <variablelist os="m4">
[bf8c11f]58 <title>The meaning of the new configure option:</title>
59
60 <varlistentry>
61 <term><parameter>-Dlibpth="/usr/local/lib64 /lib64 /usr/lib64"</parameter></term>
62 <listitem>
63 <para>This tells Perl to link against the 64-bit libraries.</para>
64 </listitem>
65 </varlistentry>
66
67 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
68 href="../common/perl.xml"
[e6423a01]69 xpointer="xpointer(//*[@os='c1'])"/>
70
71 </variablelist>
[bf8c11f]72
73 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
74 href="../common/perl.xml"
75 xpointer="xpointer(//*[@os='d'])"/>
76
77 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
78 href="../common/perl.xml"
79 xpointer="xpointer(//*[@os='e'])"/>
80
81 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
82 href="../common/perl.xml"
83 xpointer="xpointer(//*[@os='f'])"/>
84
85 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
86 href="../common/perl.xml"
87 xpointer="xpointer(//*[@os='g'])"/>
88
89 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
90 href="../common/perl.xml"
91 xpointer="xpointer(//*[@os='h'])"/>
92
93 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
94 href="../common/perl.xml"
95 xpointer="xpointer(//*[@os='i'])"/>
96
97 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
98 href="../common/perl.xml"
99 xpointer="xpointer(//*[@os='j'])"/>
100
[f6bcc50]101 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
102 href="../common/perl.xml"
103 xpointer="xpointer(//*[@os='k'])"/>
104
[bf8c11f]105 </sect2>
106
107 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
108 href="../common/perl.xml"
109 xpointer="xpointer(id('contents-perl'))"/>
110
111</sect1>
Note: See TracBrowser for help on using the repository browser.