diff options
author | Paul Green <Paul.Green@stratus.com> | 2002-05-05 13:15:00 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-05-05 22:15:48 +0000 |
commit | c71882ca62bae8258b04c568faa83361dbc72d39 (patch) | |
tree | b1939001d5fc59f87396e7c96cb7a95770d3a717 /vos/compile_full_perl.cm | |
parent | 3e9ffe509f527252a23d5921dcd6cd5a3671012b (diff) | |
download | perl-c71882ca62bae8258b04c568faa83361dbc72d39.tar.gz |
Update README.vos and release vos build macros
Message-Id: <200205052114.RAA26329@mailhub2.stratus.com>
To: perl5-porters@perl.org
p4raw-id: //depot/perl@16419
Diffstat (limited to 'vos/compile_full_perl.cm')
-rw-r--r-- | vos/compile_full_perl.cm | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/vos/compile_full_perl.cm b/vos/compile_full_perl.cm new file mode 100644 index 0000000000..9af1a87cde --- /dev/null +++ b/vos/compile_full_perl.cm @@ -0,0 +1,38 @@ +& This command macro builds and tests full perl using +& the native perl build scripts. The prerequsites for +& using this macro are a VOS Continuum system running +& VOS Release 14.5.0 and VOS GNU C/C++ and GNU Tools 2.0.1. +& +& Written 02-05-05 by Paul Green (Paul.Green@stratus.com) +& +&begin_parameters + debug_sw switch(-debug) +&end_parameters +&echo command_lines +& +!add_library_path command (master_disk)>system>gnu_library>bin &+ + -after '(current_dir)' +& +&if (process_type) = interactive +&then !set_terminal_parameters -pause_lines 0 +& +&set_string release (before (after (module_info system_release) 'VOS Release ') ' ') +&if &release& < '14.5' +&then &do + &display_line You must be running VOS Release 14.5.0 or later to use this macro. + &return e$wrong_version +&end +& +&if ^ (exists -directory (master_disk)>system>gnu_library>lib>perl5) +&then &do + &display_line You must have S877 - GNU C/C++ and GNU Tools Release 2.0.1 to use this macro. + &return e$wrong_version +&end +& +!change_current_dir < +& +&if &debug_sw& +&then !bash vos/configure_full_perl.sh -DDEBUGGING -Doptimize=-g +&else !bash vos/configure_full_perl.sh +& +!bash vos/make_full_perl.sh |