source: BOOK/final-system/multilib/perl-64bit.xml@ bddad35

systemd
Last change on this file since bddad35 was a74a2be, checked in by William Harrington <kb0iic@…>, 7 years ago

Update Perl to 5.24.1.

  • Property mode set to 100644
File size: 4.7 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/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; 64 Bit</title>
12
13 <indexterm zone="ch-system-perl">
14 <primary sortas="a-Perl">Perl</primary>
15 </indexterm>
16
17 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
18 href="../common/perl.xml"
19 xpointer="xpointer(//*[@role='package'])"/>
20
21 <sect2 role="installation">
22 <title>Installation of Perl</title>
23
24 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
25 href="../common/perl.xml"
26 xpointer="xpointer(//*[@os='s3'])"/>
27
28<screen os="s4"><userinput>sed -i -e '/^BUILD_ZLIB/s/True/False/' \
29 -e '/^INCLUDE/s,\./zlib-src,/usr/include,' \
30 -e '/^LIB/s,\./zlib-src,/usr/lib64,' \
31 cpan/Compress-Raw-Zlib/config.in</userinput></screen>
32
33 <para os="mp1">Perl does not, by default, know about library directories
34 with names other than <filename class="directory">lib</filename>. The
35 following patch will allow it to install to other directories:</para>
36
37<screen os="mp2"><userinput>patch -Np1 -i ../&perl-multilib-patch;</userinput></screen>
38
39 <para os="m2">We still need to tell Perl to actually use
40 <filename class="directory">lib64</filename>:</para>
41
42<screen os="m3"><userinput>echo 'installstyle="lib64/perl5"' &gt;&gt; hints/linux.sh</userinput></screen>
43
44 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
45 href="../common/perl.xml"
46 xpointer="xpointer(//*[@os='a'])"/>
47
48<screen os="b"><userinput>./configure.gnu \
49 --prefix=/usr \
50 -Dvendorprefix=/usr \
51 -Dman1dir=/usr/share/man/man1 \
52 -Dman3dir=/usr/share/man/man3 \
53 -Dpager="/bin/less -isR" \
54 -Dlibpth="/usr/local/lib64 /lib64 /usr/lib64" \
55 -Dcc="gcc ${BUILD64}" \
56 -Dusethreads \
57 -Duseshrplib</userinput></screen>
58
59 <variablelist os="m4">
60 <title>The meaning of the new configure option:</title>
61
62 <varlistentry>
63 <term><parameter>-Dlibpth="/usr/local/lib64 /lib64 /usr/lib64"</parameter></term>
64 <listitem>
65 <para>This tells Perl to link against the 64-bit libraries.</para>
66 </listitem>
67 </varlistentry>
68
69 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
70 href="../common/perl.xml"
71 xpointer="xpointer(//*[@os='c1'])"/>
72
73 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
74 href="../common/perl.xml"
75 xpointer="xpointer(//*[@os='c2'])"/>
76
77 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
78 href="../common/perl.xml"
79 xpointer="xpointer(//*[@os='c3'])"/>
80
81 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
82 href="../common/perl.xml"
83 xpointer="xpointer(//*[@os='c4'])"/>
84
85 </variablelist>
86
87 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
88 href="../common/perl.xml"
89 xpointer="xpointer(//*[@os='d'])"/>
90
91 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
92 href="../common/perl.xml"
93 xpointer="xpointer(//*[@os='e'])"/>
94
95 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
96 href="../common/perl.xml"
97 xpointer="xpointer(//*[@os='h'])"/>
98
99 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
100 href="../common/perl.xml"
101 xpointer="xpointer(//*[@os='h2'])"/>
102
103 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
104 href="../common/perl.xml"
105 xpointer="xpointer(//*[@os='j'])"/>
106
107 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
108 href="../common/perl.xml"
109 xpointer="xpointer(//*[@os='k'])"/>
110
111 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
112 href="perl.xml"
113 xpointer="xpointer(//*[@os='l'])"/>
114
115<screen os="m"><userinput>mv -v /usr/bin/perl{,-64}
116mv -v /usr/bin/perl&perl-version;{,-64}</userinput></screen>
117
118 <para os="n">Now we need to create a link to the multiarch wrapper that
119 lets us choose which perl installation to use:</para>
120
121<screen os="o"><userinput>ln -sv multiarch_wrapper /usr/bin/perl
122ln -sv multiarch_wrapper /usr/bin/perl&perl-version;</userinput></screen>
123
124 <para os="p">The value of the <envar>USE_ARCH</envar> environment variable
125 will decide which perl binary to execute.
126 <command>USE_ARCH=32 perl -V:cc</command> will give the value of CC used to
127 build the 32bit perl. The multiarch_wrapper will help later with building
128 perl extensions and bindings. Without the multiarch_wrapper it is very hard
129 to setup a 32bit extension or binding.</para>
130
131 </sect2>
132
133 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
134 href="../common/perl.xml"
135 xpointer="xpointer(id('contents-perl'))"/>
136
137</sect1>
Note: See TracBrowser for help on using the repository browser.