source: clfs-sysroot/BOOK/final-system/arm/perl.xml@ 090d748

Last change on this file since 090d748 was e4f6ff4, checked in by Chris Staub <chris@…>, 18 years ago

Text updates

  • Property mode set to 100644
File size: 14.0 KB
Line 
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.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
17 <sect2 role="package">
18 <title/>
19
20 <para>The Perl package contains the Practical Extraction and Report
21 Language.</para>
22
23 </sect2>
24
25 <sect2 role="installation">
26 <title>Installation of Perl</title>
27
28 <warning os="w1">
29 <para>Building with <envar>CFLAGS</envar> or <envar>CXXFLAGS</envar> set
30 can cause the build to hang or fail.</para>
31 </warning>
32
33 <para os="p1">The following patch fixes issues with Perl and
34 cross-compiling:</para>
35
36<screen os="p2"><userinput>patch -Np1 -i ../&perl-cross_compile-patch;</userinput></screen>
37
38 <para os="s1">The following sed causes <filename>DynaLoader.a</filename>
39 to be built with -fPIC so it can be linked into a shared library
40 later:</para>
41
42<screen os="s2"><userinput>sed -i -e "s@pldlflags=''@pldlflags=\"\$cccdlflags\"@g" \
43 -e "s@static_target='static'@static_target='static_pic'@g" Makefile.SH</userinput></screen>
44
45 <para os="a">The Cross directory contains a Makefile for cross-compiling:</para>
46
47<screen os="b"><userinput>cd Cross</userinput></screen>
48
49 <para os="c">Compile the package:</para>
50
51<screen os="d"><userinput>make ARCH=arm CROSS_COMPILE=${CLFS_TARGET}-</userinput></screen>
52
53 <para os="e">Install the package:</para>
54
55<screen os="f"><userinput>make DESTDIR=${CLFS} install</userinput></screen>
56
57 </sect2>
58
59 <sect2 id="contents-perl" role="content">
60 <title>Contents of Perl</title>
61
62 <segmentedlist>
63 <segtitle>Installed programs</segtitle>
64 <segtitle>Installed libraries</segtitle>
65
66 <seglistitem>
67 <seg>a2p, c2ph, cpan, dprofpp, enc2xs, find2perl, h2ph, h2xs, instmodsh, libnetcfg,
68 perl, perl&perl-version; (link to perl), perlbug, perlcc, perldoc,
69 perlivp, piconv, pl2pm, pod2html, pod2latex, pod2man, pod2text,
70 pod2usage, podchecker, podselect, prove, psed (link to s2p), pstruct (link
71 to c2ph), s2p, splain, and xsubpp</seg>
72 <seg>Several hundred which cannot all be listed here</seg>
73 </seglistitem>
74 </segmentedlist>
75
76 <variablelist>
77 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
78 <?dbfo list-presentation="list"?>
79 <?dbhtml list-presentation="table"?>
80
81 <varlistentry id="a2p">
82 <term><command>a2p</command></term>
83 <listitem>
84 <para>Translates awk to Perl</para>
85 <indexterm zone="ch-system-perl a2p">
86 <primary sortas="b-a2p">a2p</primary>
87 </indexterm>
88 </listitem>
89 </varlistentry>
90
91 <varlistentry id="c2ph">
92 <term><command>c2ph</command></term>
93 <listitem>
94 <para>Dumps C structures as generated from
95 <command>cc -g -S</command></para>
96 <indexterm zone="ch-system-perl c2ph">
97 <primary sortas="b-c2ph">c2ph</primary>
98 </indexterm>
99 </listitem>
100 </varlistentry>
101
102 <varlistentry id="cpan">
103 <term><command>cpan</command></term>
104 <listitem>
105 <para>Shell script that provides a command interface to CPAN.pm</para>
106 <indexterm zone="ch-system-perl cpan">
107 <primary sortas="b-cpan">cpan</primary>
108 </indexterm>
109 </listitem>
110 </varlistentry>
111
112 <varlistentry id="dprofpp">
113 <term><command>dprofpp</command></term>
114 <listitem>
115 <para>Displays Perl profile data</para>
116 <indexterm zone="ch-system-perl dprofpp">
117 <primary sortas="b-dprofpp">dprofpp</primary>
118 </indexterm>
119 </listitem>
120 </varlistentry>
121
122 <varlistentry id="enc2xs">
123 <term><command>enc2xs</command></term>
124 <listitem>
125 <para>Builds a Perl extension for the Encode module from either
126 Unicode Character Mappings or Tcl Encoding Files</para>
127 <indexterm zone="ch-system-perl enc2xs">
128 <primary sortas="b-enc2xs">enc2xs</primary>
129 </indexterm>
130 </listitem>
131 </varlistentry>
132
133 <varlistentry id="find2perl">
134 <term><command>find2perl</command></term>
135 <listitem>
136 <para>Translates <command>find</command> commands to Perl</para>
137 <indexterm zone="ch-system-perl find2perl">
138 <primary sortas="b-find2perl">find2perl</primary>
139 </indexterm>
140 </listitem>
141 </varlistentry>
142
143 <varlistentry id="h2ph">
144 <term><command>h2ph</command></term>
145 <listitem>
146 <para>Converts <filename class="extension">.h</filename> C header
147 files to <filename class="extension">.ph</filename> Perl header
148 files</para>
149 <indexterm zone="ch-system-perl h2ph">
150 <primary sortas="b-h2ph">h2ph</primary>
151 </indexterm>
152 </listitem>
153 </varlistentry>
154
155 <varlistentry id="h2xs">
156 <term><command>h2xs</command></term>
157 <listitem>
158 <para>Converts <filename class="extension">.h</filename> C header
159 files to Perl extensions</para>
160 <indexterm zone="ch-system-perl h2xs">
161 <primary sortas="b-h2xs">h2xs</primary>
162 </indexterm>
163 </listitem>
164 </varlistentry>
165
166 <varlistentry id="libnetcfg">
167 <term><command>libnetcfg</command></term>
168 <listitem>
169 <para>Can be used to configure the
170 <filename class="libraryfile">libnet</filename></para>
171 <indexterm zone="ch-system-perl libnetcfg">
172 <primary sortas="b-libnetcfg">libnetcfg</primary>
173 </indexterm>
174 </listitem>
175 </varlistentry>
176
177 <varlistentry id="instmodsh">
178 <term><command>instmodsh</command></term>
179 <listitem>
180 <para>A shell script for examining installed Perl modules,
181 and can even create a tarball from an installed module</para>
182 <indexterm zone="ch-system-perl instmodsh">
183 <primary sortas="b-instmodsh">instmodsh</primary>
184 </indexterm>
185 </listitem>
186 </varlistentry>
187
188 <varlistentry id="perl">
189 <term><command>perl</command></term>
190 <listitem>
191 <para>Combines some of the best features of C, <command>sed</command>,
192 <command>awk</command> and <command>sh</command> into a single
193 swiss-army-knife language</para>
194 <indexterm zone="ch-system-perl perl">
195 <primary sortas="b-perl">perl</primary>
196 </indexterm>
197 </listitem>
198 </varlistentry>
199
200 <varlistentry id="perl-version">
201 <term><command>perl&perl-version;</command></term>
202 <listitem>
203 <para>A hard link to <command>perl</command></para>
204 <indexterm zone="ch-system-perl perl-version">
205 <primary sortas="b-perl&perl-version;">perl&perl-version;</primary>
206 </indexterm>
207 </listitem>
208 </varlistentry>
209
210 <varlistentry id="perlbug">
211 <term><command>perlbug</command></term>
212 <listitem>
213 <para>Used to generate bug reports about Perl, or the modules that come
214 with it, and mail them</para>
215 <indexterm zone="ch-system-perl perlbug">
216 <primary sortas="b-perlbug">perlbug</primary>
217 </indexterm>
218 </listitem>
219 </varlistentry>
220
221 <varlistentry id="perlcc">
222 <term><command>perlcc</command></term>
223 <listitem>
224 <para>Generates executables from Perl programs</para>
225 <indexterm zone="ch-system-perl perlcc">
226 <primary sortas="b-perlcc">perlcc</primary>
227 </indexterm>
228 </listitem>
229 </varlistentry>
230
231 <varlistentry id="perldoc">
232 <term><command>perldoc</command></term>
233 <listitem>
234 <para>Displays a piece of documentation in pod format that is embedded
235 in the Perl installation tree or in a Perl script</para>
236 <indexterm zone="ch-system-perl perldoc">
237 <primary sortas="b-perldoc">perldoc</primary>
238 </indexterm>
239 </listitem>
240 </varlistentry>
241
242 <varlistentry id="perlivp">
243 <term><command>perlivp</command></term>
244 <listitem>
245 <para>The Perl Installation Verification Procedure; it can be used to
246 verify that Perl and its libraries have been installed
247 correctly</para>
248 <indexterm zone="ch-system-perl perlivp">
249 <primary sortas="b-perlivp">perlivp</primary>
250 </indexterm>
251 </listitem>
252 </varlistentry>
253
254 <varlistentry id="piconv">
255 <term><command>piconv</command></term>
256 <listitem>
257 <para>A Perl version of the character encoding converter
258 <command>iconv</command></para>
259 <indexterm zone="ch-system-perl piconv">
260 <primary sortas="b-piconv">piconv</primary>
261 </indexterm>
262 </listitem>
263 </varlistentry>
264
265 <varlistentry id="pl2pm">
266 <term><command>pl2pm</command></term>
267 <listitem>
268 <para>A rough tool for converting Perl4
269 <filename class="extension">.pl</filename> files to Perl5
270 <filename class="extension">.pm</filename> modules</para>
271 <indexterm zone="ch-system-perl pl2pm">
272 <primary sortas="b-pl2pm">pl2pm</primary>
273 </indexterm>
274 </listitem>
275 </varlistentry>
276
277 <varlistentry id="pod2html">
278 <term><command>pod2html</command></term>
279 <listitem>
280 <para>Converts files from pod format to HTML format</para>
281 <indexterm zone="ch-system-perl pod2html">
282 <primary sortas="b-pod2html">pod2html</primary>
283 </indexterm>
284 </listitem>
285 </varlistentry>
286
287 <varlistentry id="pod2latex">
288 <term><command>pod2latex</command></term>
289 <listitem>
290 <para>Converts files from pod format to LaTeX format</para>
291 <indexterm zone="ch-system-perl pod2latex">
292 <primary sortas="b-pod2latex">pod2latex</primary>
293 </indexterm>
294 </listitem>
295 </varlistentry>
296
297 <varlistentry id="pod2man">
298 <term><command>pod2man</command></term>
299 <listitem>
300 <para>Converts pod data to formatted *roff input</para>
301 <indexterm zone="ch-system-perl pod2man">
302 <primary sortas="b-pod2man">pod2man</primary>
303 </indexterm>
304 </listitem>
305 </varlistentry>
306
307 <varlistentry id="pod2text">
308 <term><command>pod2text</command></term>
309 <listitem>
310 <para>Converts pod data to formatted ASCII text</para>
311 <indexterm zone="ch-system-perl pod2text">
312 <primary sortas="b-pod2text">pod2text</primary>
313 </indexterm>
314 </listitem>
315 </varlistentry>
316
317 <varlistentry id="pod2usage">
318 <term><command>pod2usage</command></term>
319 <listitem>
320 <para>Prints usage messages from embedded pod docs in files</para>
321 <indexterm zone="ch-system-perl pod2usage">
322 <primary sortas="b-pod2usage">pod2usage</primary>
323 </indexterm>
324 </listitem>
325 </varlistentry>
326
327 <varlistentry id="podchecker">
328 <term><command>podchecker</command></term>
329 <listitem>
330 <para>Checks the syntax of pod format documentation files</para>
331 <indexterm zone="ch-system-perl podchecker">
332 <primary sortas="b-podchecker">podchecker</primary>
333 </indexterm>
334 </listitem>
335 </varlistentry>
336
337 <varlistentry id="podselect">
338 <term><command>podselect</command></term>
339 <listitem>
340 <para>Displays selected sections of pod documentation</para>
341 <indexterm zone="ch-system-perl podselect">
342 <primary sortas="b-podselect">podselect</primary>
343 </indexterm>
344 </listitem>
345 </varlistentry>
346
347 <varlistentry id="prove">
348 <term><command>prove</command></term>
349 <listitem>
350 <para>A command-line tool for running tests against Test::Harness</para>
351 <indexterm zone="ch-system-perl prove">
352 <primary sortas="b-prove">prove</primary>
353 </indexterm>
354 </listitem>
355 </varlistentry>
356
357 <varlistentry id="psed">
358 <term><command>psed</command></term>
359 <listitem>
360 <para>A Perl version of the stream editor <command>sed</command></para>
361 <indexterm zone="ch-system-perl psed">
362 <primary sortas="b-psed">psed</primary>
363 </indexterm>
364 </listitem>
365 </varlistentry>
366
367 <varlistentry id="pstruct">
368 <term><command>pstruct</command></term>
369 <listitem>
370 <para>Dumps C structures as generated from <command>cc -g -S</command>
371 stabs</para>
372 <indexterm zone="ch-system-perl pstruct">
373 <primary sortas="b-pstruct">pstruct</primary>
374 </indexterm>
375 </listitem>
376 </varlistentry>
377
378 <varlistentry id="s2p">
379 <term><command>s2p</command></term>
380 <listitem>
381 <para>Translates <command>sed</command> to Perl</para>
382 <indexterm zone="ch-system-perl s2p">
383 <primary sortas="b-s2p">s2p</primary>
384 </indexterm>
385 </listitem>
386 </varlistentry>
387
388 <varlistentry id="splain">
389 <term><command>splain</command></term>
390 <listitem>
391 <para>Is used to force verbose warning diagnostics in Perl</para>
392 <indexterm zone="ch-system-perl splain">
393 <primary sortas="b-splain">splain</primary>
394 </indexterm>
395 </listitem>
396 </varlistentry>
397
398 <varlistentry id="xsubpp">
399 <term><command>xsubpp</command></term>
400 <listitem>
401 <para>Converts Perl XS code into C code</para>
402 <indexterm zone="ch-system-perl xsubpp">
403 <primary sortas="b-xsubpp">xsubpp</primary>
404 </indexterm>
405 </listitem>
406 </varlistentry>
407
408 </variablelist>
409
410 </sect2>
411
412</sect1>
Note: See TracBrowser for help on using the repository browser.