summaryrefslogtreecommitdiff
path: root/vos
diff options
context:
space:
mode:
authorPaul Green <Paul.Green@stratus.com>2002-05-05 19:11:00 -0400
committerJarkko Hietaniemi <jhi@iki.fi>2002-05-06 02:16:31 +0000
commit5dfb9dd4bee050b1b9a370eee6685382096da546 (patch)
treec2b484030f25354a6612b006d772b2a6dec46313 /vos
parentfa326138e0db34ae4a0161fbe7c05eb9a9367825 (diff)
downloadperl-5dfb9dd4bee050b1b9a370eee6685382096da546.tar.gz
Fixup VOS builds of miniperl
Message-Id: <200205060311.XAA12996@mailhub1.stratus.com> p4raw-id: //depot/perl@16422
Diffstat (limited to 'vos')
-rw-r--r--vos/build.cm12
-rw-r--r--vos/compile_perl.cm15
-rw-r--r--vos/perl.bind2
3 files changed, 27 insertions, 2 deletions
diff --git a/vos/build.cm b/vos/build.cm
index 991530f448..a07dad36b3 100644
--- a/vos/build.cm
+++ b/vos/build.cm
@@ -38,6 +38,12 @@
&return 1
&end
&
+&if &compiler& = gcc & &cpu& = pa8000
+&then &do
+ &display_line build: "-compiler gcc" is incompatible with "-processor pa8000"
+ &return 1
+ &end
+&
& Set up the appropriate directory suffix for each architecture.
&
&if &cpu& = mc68020
@@ -206,6 +212,8 @@
&if (command_status) ^= 0 &then &return
!&compiler& <<xsutils.c &diag& &cpu& &cflags& -o xsutils&s&
&if (command_status) ^= 0 &then &return
+!&compiler& <vos.c &diag& &cpu& &cflags& -o vos&s&
+&if (command_status) ^= 0 &then &return
&if &version& = alpha
&then &do
!&compiler& <vos_dummies.c &cpu& -O4 -o vos_dummies&s&
@@ -214,11 +222,11 @@
&
&if &compiler& = gcc
&then &do
- !delete_file perl.a
+ &if (exists -file perl.a) &then !delete_file perl.a
!ar rc perl.a av.o deb.o doio.o doop.o dump.o globals.o gv.o hv.o locale.o &+
mg.o numeric.o op.o perl.o perlapi.o perlio.o perly.o pp.o pp_ctl.o &+
pp_hot.o pp_pack.o pp_sort.o pp_sys.o reentr.o regcomp.o regexec.o run.o &+
- scope.o sv.o taint.o toke.o universal.o utf8.o util.o xsutils.o
+ scope.o sv.o taint.o toke.o universal.o utf8.o util.o vos.o xsutils.o
!delete_file *.o -no_ask -brief
&end
&else &do
diff --git a/vos/compile_perl.cm b/vos/compile_perl.cm
index 367b0797d5..c5c7c1e068 100644
--- a/vos/compile_perl.cm
+++ b/vos/compile_perl.cm
@@ -38,6 +38,21 @@
&display_line GCC is not supported by the alpha version of POSIX support.
&return e$translation_failed
&end
+&if &cpu& = mc68020 & &version& = ga
+&then &do
+ &display_line The mc68020 CPU is not supported by the GA version of POSIX support.
+ &return e$translation_failed
+&end
+&if &cpu& = i80860 & &version& = ga
+&then &do
+ &display_line The i80860 CPU is not supported by the GA version of POSIX support.
+ &return e$translation_failed
+&end
+&if &cpu& = pa8000 & &compiler& = gcc
+&then &do
+ &display_line The pa8000 CPU is not supported by the GNU GCC compiler.
+ &return e$translation_failed
+&end
&if ^ (exists obj&obj& -directory)
&then !create_dir obj&obj&
&
diff --git a/vos/perl.bind b/vos/perl.bind
index 6531c05086..7206c363f9 100644
--- a/vos/perl.bind
+++ b/vos/perl.bind
@@ -26,6 +26,7 @@ modules: miniperlmain,
pp_sort,
pp_sys,
reentr,
+ regcomp,
regexec,
run,
scope,
@@ -35,6 +36,7 @@ modules: miniperlmain,
universal,
utf8,
util,
+ vos,
xsutils;
end;