[3f8be484] | 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 |
|
---|
[566db8e] | 17 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 18 | href="../common/perl.xml"
|
---|
| 19 | xpointer="xpointer(//*[@role='package'])"/>
|
---|
[3f8be484] | 20 |
|
---|
| 21 | <sect2 role="installation">
|
---|
| 22 | <title>Installation of Perl</title>
|
---|
| 23 |
|
---|
[e0e40d3] | 24 | <para os="m1">In multilib builds we install compilers and libraries for each available
|
---|
[3f8be484] | 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
|
---|
[566db8e] | 31 | therefore only install one version.</para>
|
---|
[3f8be484] | 32 |
|
---|
[521c55b] | 33 | <para os="p3">Perl does not, by default, know about library directories with names other
|
---|
[3f8be484] | 34 | than lib, such as lib64. The following patch will allow it to install to lib64.</para>
|
---|
| 35 |
|
---|
[521c55b] | 36 | <screen os="p4"><userinput>patch -Np1 -i ../&perl-multilib-patch;</userinput></screen>
|
---|
[3f8be484] | 37 |
|
---|
[521c55b] | 38 | <para os="p5">There is a further (possibly cosmetic) anomaly - if we install perl and
|
---|
[3f8be484] | 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 |
|
---|
[521c55b] | 43 | <screen os="p6"><userinput>patch -Np1 -i ../&perl-lib64-patch;</userinput></screen>
|
---|
[3f8be484] | 44 |
|
---|
[e0e40d3] | 45 | <para os="m2">We still need to tell perl to actually use lib64</para>
|
---|
[3f8be484] | 46 |
|
---|
[e0e40d3] | 47 | <screen os="m3"><userinput>echo 'installstyle="lib64/perl5"' >>hints/linux.sh</userinput></screen>
|
---|
[3f8be484] | 48 |
|
---|
[0b1aa01] | 49 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 50 | href="../common/perl.xml"
|
---|
| 51 | xpointer="xpointer(//*[@os='a00'])"/>
|
---|
| 52 |
|
---|
| 53 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 54 | href="../common/perl.xml"
|
---|
| 55 | xpointer="xpointer(//*[@os='a01'])"/>
|
---|
| 56 |
|
---|
[3f8be484] | 57 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 58 | href="../common/perl.xml"
|
---|
| 59 | xpointer="xpointer(//*[@os='a'])"/>
|
---|
| 60 |
|
---|
[bbf90e8] | 61 | <screen os="b"><userinput>./configure.gnu --prefix=/usr \
|
---|
| 62 | -Dman1dir=/usr/share/man/man1 \
|
---|
| 63 | -Dman3dir=/usr/share/man/man3 \
|
---|
| 64 | -Dpager="/bin/less -isR" \
|
---|
[3f8be484] | 65 | -Dlibpth="/usr/local/lib64 /lib64 /usr/lib64" \
|
---|
[c33fed0] | 66 | -Dcc="gcc ${BUILD64}" \
|
---|
| 67 | -Dusethreads</userinput></screen>
|
---|
[3f8be484] | 68 |
|
---|
[e0e40d3] | 69 | <variablelist os="m4">
|
---|
[3f8be484] | 70 | <title>The meaning of the new configure option:</title>
|
---|
| 71 |
|
---|
| 72 | <varlistentry>
|
---|
| 73 | <term><parameter>-Dlibpth="/usr/local/lib64 /lib64 /usr/lib64"</parameter></term>
|
---|
| 74 | <listitem>
|
---|
| 75 | <para>This tells Perl to link against the 64-bit libraries.</para>
|
---|
| 76 | </listitem>
|
---|
| 77 | </varlistentry>
|
---|
| 78 |
|
---|
| 79 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 80 | href="../common/perl.xml"
|
---|
[e0e40d3] | 81 | xpointer="xpointer(//*[@os='c1'])"/>
|
---|
| 82 |
|
---|
[bbf90e8] | 83 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 84 | href="../common/perl.xml"
|
---|
| 85 | xpointer="xpointer(//*[@os='c2'])"/>
|
---|
| 86 |
|
---|
[c33fed0] | 87 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 88 | href="../common/perl.xml"
|
---|
| 89 | xpointer="xpointer(//*[@os='c3'])"/>
|
---|
| 90 |
|
---|
[e0e40d3] | 91 | </variablelist>
|
---|
[3f8be484] | 92 |
|
---|
| 93 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 94 | href="../common/perl.xml"
|
---|
| 95 | xpointer="xpointer(//*[@os='d'])"/>
|
---|
| 96 |
|
---|
| 97 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 98 | href="../common/perl.xml"
|
---|
| 99 | xpointer="xpointer(//*[@os='e'])"/>
|
---|
| 100 |
|
---|
| 101 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 102 | href="../common/perl.xml"
|
---|
| 103 | xpointer="xpointer(//*[@os='h'])"/>
|
---|
| 104 |
|
---|
| 105 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 106 | href="../common/perl.xml"
|
---|
| 107 | xpointer="xpointer(//*[@os='j'])"/>
|
---|
| 108 |
|
---|
[b4f5af8] | 109 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 110 | href="../common/perl.xml"
|
---|
| 111 | xpointer="xpointer(//*[@os='k'])"/>
|
---|
| 112 |
|
---|
[3f8be484] | 113 | </sect2>
|
---|
| 114 |
|
---|
| 115 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 116 | href="../common/perl.xml"
|
---|
| 117 | xpointer="xpointer(id('contents-perl'))"/>
|
---|
| 118 |
|
---|
| 119 | </sect1>
|
---|