| 1 | If you read this file _as_is_, just ignore the funny characters you
|
|---|
| 2 | see. It is written in the POD format (see pod/perlpod.pod) which is
|
|---|
| 3 | specially designed to be readable as is.
|
|---|
| 4 |
|
|---|
| 5 | =head1 NAME
|
|---|
| 6 |
|
|---|
| 7 | README.vos - Perl for Stratus VOS
|
|---|
| 8 |
|
|---|
| 9 | =head1 SYNOPSIS
|
|---|
| 10 |
|
|---|
| 11 | This file contains notes for building perl on the Stratus VOS
|
|---|
| 12 | operating system. Perl is a scripting or macro language that is
|
|---|
| 13 | popular on many systems. See L<perlbook> for a number of good
|
|---|
| 14 | books on Perl.
|
|---|
| 15 |
|
|---|
| 16 | These are instructions for building Perl from source. Most people can
|
|---|
| 17 | simply download a pre-compiled distribution from the VOS anonymous FTP
|
|---|
| 18 | site. If you are running VOS Release 14.2.0 or earlier, download Perl
|
|---|
| 19 | from ftp://ftp.stratus.com/pub/vos/posix/alpha/alpha.html If you are
|
|---|
| 20 | running VOS Release 14.3.0 or later, download Perl from
|
|---|
| 21 | ftp://ftp.stratus.com/pub/vos/posix/ga/ga.html Instructions for
|
|---|
| 22 | unbundling the Perl distribution file are at
|
|---|
| 23 | ftp://ftp.stratus.com/pub/vos/utility/utility.html
|
|---|
| 24 |
|
|---|
| 25 | If you are running VOS Release 14.4.1 or later, you can obtain a
|
|---|
| 26 | pre-compiled, supported copy of perl by purchasing Release 2.0.1
|
|---|
| 27 | (or later) of the VOS GNU C++ and GNU Tools product from Stratus
|
|---|
| 28 | Technologies.
|
|---|
| 29 |
|
|---|
| 30 | =head2 Multiple methods to build perl for VOS
|
|---|
| 31 |
|
|---|
| 32 | If you elect to build perl from its source code, you have several
|
|---|
| 33 | different ways that you can build perl. The method that you use
|
|---|
| 34 | depends on the version of VOS that you are using and on the
|
|---|
| 35 | architecture of your Stratus hardware platform.
|
|---|
| 36 |
|
|---|
| 37 | =over 5
|
|---|
| 38 |
|
|---|
| 39 | =item 1
|
|---|
| 40 |
|
|---|
| 41 | If you have a Stratus XA2000 (Motorola 68k-based) platform, you
|
|---|
| 42 | must build perl using the alpha version of VOS POSIX support and
|
|---|
| 43 | using the VOS Standard C Cross-compiler. You must build perl on
|
|---|
| 44 | VOS Release 14.1.0 (or later) on an XA/R or Continuum platform.
|
|---|
| 45 |
|
|---|
| 46 | This version of perl is properly called "miniperl" because it
|
|---|
| 47 | does not contain the complete perl functionality.
|
|---|
| 48 |
|
|---|
| 49 | You must build perl with the compile_perl.cm command macro found
|
|---|
| 50 | in the vos subdirectory.
|
|---|
| 51 |
|
|---|
| 52 | =item 2
|
|---|
| 53 |
|
|---|
| 54 | If you have a Stratus XA/R (Intel i860-based) platform, you must
|
|---|
| 55 | build perl using the alpha version of VOS POSIX support and using
|
|---|
| 56 | the VOS Standard C compiler or cross-compiler. You must build
|
|---|
| 57 | perl on VOS Release 14.1.0 (or later) on an XA/R or Continuum
|
|---|
| 58 | platform.
|
|---|
| 59 |
|
|---|
| 60 | This version of perl is properly called "miniperl" because it
|
|---|
| 61 | does not contain the complete perl functionality.
|
|---|
| 62 |
|
|---|
| 63 | You must build perl with the compile_perl.cm command macro found
|
|---|
| 64 | in the vos subdirectory.
|
|---|
| 65 |
|
|---|
| 66 | =item 3
|
|---|
| 67 |
|
|---|
| 68 | If you have a Stratus Continuum (PA-RISC-based) platform that is
|
|---|
| 69 | running a version of VOS earlier than VOS 14.3.0, you must build
|
|---|
| 70 | perl using the alpha version of VOS POSIX support and using the
|
|---|
| 71 | VOS Standard C compiler or cross-compiler. You must build perl
|
|---|
| 72 | on VOS Release 14.1.0 (or later) on an XA/R or Continuum
|
|---|
| 73 | platform.
|
|---|
| 74 |
|
|---|
| 75 | This version of perl is properly called "miniperl" because it
|
|---|
| 76 | does not contain the complete perl functionality.
|
|---|
| 77 |
|
|---|
| 78 | You must build perl with the compile_perl.cm command macro found
|
|---|
| 79 | in the vos subdirectory.
|
|---|
| 80 |
|
|---|
| 81 | =item 4
|
|---|
| 82 |
|
|---|
| 83 | If you have a Stratus Continuum (PA-RISC-based) platform that is
|
|---|
| 84 | running VOS Release 14.3.0 through VOS Release 14.4.1, you must
|
|---|
| 85 | build perl using the generally-available version of VOS POSIX
|
|---|
| 86 | support, and using either the VOS Standard C compiler or the VOS
|
|---|
| 87 | GNU C compiler. You must build perl on VOS Release 14.3.0 (or
|
|---|
| 88 | later) on a Continuum platform.
|
|---|
| 89 |
|
|---|
| 90 | This version of perl is properly called "miniperl" because it
|
|---|
| 91 | does not contain the complete perl functionality.
|
|---|
| 92 |
|
|---|
| 93 | You must build perl with the compile_perl.cm command macro found
|
|---|
| 94 | in the vos subdirectory.
|
|---|
| 95 |
|
|---|
| 96 | =item 5
|
|---|
|
|---|