[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 |
|
---|
| 8 | <sect1 id="ch-system-perl" role="wrap">
|
---|
| 9 | <?dbhtml filename="perl-64bit.html"?>
|
---|
| 10 |
|
---|
[9c1db810] | 11 | <title>Perl-&perl-version; 64 Bit</title>
|
---|
[3f8be484] | 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 |
|
---|
[3508ede] | 24 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 25 | href="../common/perl.xml"
|
---|
| 26 | xpointer="xpointer(//*[@os='p1'])"/>
|
---|
| 27 |
|
---|
| 28 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 29 | href="../common/perl.xml"
|
---|
| 30 | xpointer="xpointer(//*[@os='p2'])"/>
|
---|
| 31 |
|
---|
[d10818d] | 32 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 33 | href="../common/perl.xml"
|
---|
| 34 | xpointer="xpointer(//*[@os='p3'])"/>
|
---|
| 35 |
|
---|
| 36 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 37 | href="../common/perl.xml"
|
---|
| 38 | xpointer="xpointer(//*[@os='p4'])"/>
|
---|
| 39 |
|
---|
[6a7f467] | 40 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 41 | href="../common/perl.xml"
|
---|
[96d0fe5] | 42 | xpointer="xpointer(//*[@os='s1'])"/>
|
---|
[6a7f467] | 43 |
|
---|
| 44 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 45 | href="../common/perl.xml"
|
---|
[96d0fe5] | 46 | xpointer="xpointer(//*[@os='s2'])"/>
|
---|
[6a7f467] | 47 |
|
---|
[d10818d] | 48 | <para os="mp1">Perl does not, by default, know about library directories with names other
|
---|
[9c1db810] | 49 | than lib, The following patch will allow it to install to other directories:</para>
|
---|
[3f8be484] | 50 |
|
---|
[d10818d] | 51 | <screen os="mp2"><userinput>patch -Np1 -i ../&perl-multilib-patch;</userinput></screen>
|
---|
[3f8be484] | 52 |
|
---|
[9c1db810] | 53 | <para os="s1">There is a further (possibly cosmetic) anomaly - if we install perl and
|
---|
[3f8be484] | 54 | then run <command>perl -V</command> it will claim that libc is in /lib. The
|
---|
[9c1db810] | 55 | following sed fixes this, but only takes effect when <command>make install
|
---|
[403203d] | 56 | </command> is run:</para>
|
---|
[3f8be484] | 57 |
|
---|
[9c1db810] | 58 | <screen os="s2"><userinput>sed -i "/libc/s@/lib@/lib64@" hints/linux.sh</userinput></screen>
|
---|
[3f8be484] | 59 |
|
---|
[403203d] | 60 | <para os="m2">We still need to tell perl to actually use lib64:</para>
|
---|
[3f8be484] | 61 |
|
---|
[e0e40d3] | 62 | <screen os="m3"><userinput>echo 'installstyle="lib64/perl5"' >>hints/linux.sh</userinput></screen>
|
---|
[3f8be484] | 63 |
|
---|
| 64 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 65 | href="../common/perl.xml"
|
---|
| 66 | xpointer="xpointer(//*[@os='a'])"/>
|
---|
| 67 |
|
---|
[bbf90e8] | 68 | <screen os="b"><userinput>./configure.gnu --prefix=/usr \
|
---|
| 69 | -Dman1dir=/usr/share/man/man1 \
|
---|
| 70 | -Dman3dir=/usr/share/man/man3 \
|
---|
| 71 | -Dpager="/bin/less -isR" \
|
---|
[3f8be484] | 72 | -Dlibpth="/usr/local/lib64 /lib64 /usr/lib64" \
|
---|
[c33fed0] | 73 | -Dcc="gcc ${BUILD64}" \
|
---|
| 74 | -Dusethreads</userinput></screen>
|
---|
[3f8be484] | 75 |
|
---|
[e0e40d3] | 76 | <variablelist os="m4">
|
---|
[3f8be484] | 77 | <title>The meaning of the new configure option:</title>
|
---|
| 78 |
|
---|
| 79 | <varlistentry>
|
---|
| 80 | <term><parameter>-Dlibpth="/usr/local/lib64 /lib64 /usr/lib64"</parameter></term>
|
---|
| 81 | <listitem>
|
---|
| 82 | <para>This tells Perl to link against the 64-bit libraries.</para>
|
---|
| 83 | </listitem>
|
---|
| 84 | </varlistentry>
|
---|
| 85 |
|
---|
| 86 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 87 | href="../common/perl.xml"
|
---|
[e0e40d3] | 88 | xpointer="xpointer(//*[@os='c1'])"/>
|
---|
| 89 |
|
---|
[bbf90e8] | 90 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 91 | href="../common/perl.xml"
|
---|
| 92 | xpointer="xpointer(//*[@os='c2'])"/>
|
---|
| 93 |
|
---|
[c33fed0] | 94 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 95 | href="../common/perl.xml"
|
---|
| 96 | xpointer="xpointer(//*[@os='c3'])"/>
|
---|
| 97 |
|
---|
[e0e40d3] | 98 | </variablelist>
|
---|
[3f8be484] | 99 |
|
---|
| 100 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 101 | href="../common/perl.xml"
|
---|
| 102 | xpointer="xpointer(//*[@os='d'])"/>
|
---|
| 103 |
|
---|
| 104 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 105 | href="../common/perl.xml"
|
---|
| 106 | xpointer="xpointer(//*[@os='e'])"/>
|
---|
| 107 |
|
---|
| 108 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 109 | href="../common/perl.xml"
|
---|
| 110 | xpointer="xpointer(//*[@os='h'])"/>
|
---|
| 111 |
|
---|
| 112 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 113 | href="../common/perl.xml"
|
---|
| 114 | xpointer="xpointer(//*[@os='j'])"/>
|
---|
| 115 |
|
---|
[b4f5af8] | 116 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 117 | href="../common/perl.xml"
|
---|
| 118 | xpointer="xpointer(//*[@os='k'])"/>
|
---|
| 119 |
|
---|
[9c1db810] | 120 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 121 | href="perl.xml"
|
---|
| 122 | xpointer="xpointer(//*[@os='l'])"/>
|
---|
| 123 |
|
---|
[8f0f884] | 124 | <screen os="m"><userinput>mv /usr/bin/perl{,-64}
|
---|
| 125 | mv /usr/bin/perl&perl-version;{,-64}</userinput></screen>
|
---|
[9c1db810] | 126 |
|
---|
[5accd22] | 127 | <para os="n">Now we need to create a link to the multiarch wrapper that
|
---|
| 128 | lets us choose which perl installation to use:</para>
|
---|
| 129 |
|
---|
[8f0f884] | 130 | <screen os="o"><userinput>ln -sv multiarch_wrapper /usr/bin/perl
|
---|
| 131 | ln -sv multiarch_wrapper /usr/bin/perl&perl-version;</userinput></screen>
|
---|
[5accd22] | 132 |
|
---|
[93a3052a] | 133 | <para os="p">The value of the <envar>USE_ARCH</envar> environment variable
|
---|
[5accd22] | 134 | will decide which perl binary to execute.
|
---|
| 135 | <command>USE_ARCH=32 perl -V:cc</command> will give the value of CC used to
|
---|
| 136 | build the 32bit perl. The multiarch_wrapper will help later with building
|
---|
| 137 | perl extensions and bindings. Without the multiarch_wrapper it is very hard
|
---|
[c4534a5] | 138 | to setup a 32bit extension or binding.</para>
|
---|
[95ab747] | 139 |
|
---|
[4b453a1] | 140 | </sect2>
|
---|
| 141 |
|
---|
[3f8be484] | 142 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 143 | href="../common/perl.xml"
|
---|
| 144 | xpointer="xpointer(id('contents-perl'))"/>
|
---|
| 145 |
|
---|
| 146 | </sect1>
|
---|