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