diff options
author | Thomas Dorner <Thomas.Dorner@start.de> | 1998-09-29 14:29:36 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1998-10-17 14:49:46 +0000 |
commit | a1a0e61e30ae0c76c1d9cbf46512c19c0a966791 (patch) | |
tree | 87df3aae4267240a5d481ebb6ffe2eb12fe14667 /hints/posix-bc.sh | |
parent | 5b7e2fe55885acf170d7496132b9ef976ea5c02b (diff) | |
download | perl-a1a0e61e30ae0c76c1d9cbf46512c19c0a966791.tar.gz |
POSIX BC2000 port from perl-mvs:
Subject: Ported perl 5.005.02 to BS2000 / POSIX
Message-ID: <9CE47B416A24D2118BC40000F84009B20B72C5@start.de>
p4raw-id: //depot/cfgperl@2009
Diffstat (limited to 'hints/posix-bc.sh')
-rw-r--r-- | hints/posix-bc.sh | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/hints/posix-bc.sh b/hints/posix-bc.sh new file mode 100644 index 0000000000..9c1ead52fd --- /dev/null +++ b/hints/posix-bc.sh @@ -0,0 +1,33 @@ +#! /usr/bin/bash -norc +# hints/posix-bc.sh +# +# BS2000 (Posix Subsystem) hints by Thomas Dorner <Thomas.Dorner@start.de> +# +# thanks to the authors of the os390.sh +# + +# To get ANSI C, we need to use c89, and ld doesn't exist +cc='c89' +ld='c89' + +# C-Flags: +ccflags='-DPOSIX_BC -DUSE_PURE_BISON -D_XOPEN_SOURCE_EXTENDED' + +# Turning on optimization breaks perl (CORE-DUMP): +optimize='none' + +# we don''t use dynamic memorys (yet): +so='none' +usedl='no' +dlext='none' + +# On BS2000/Posix, libc.a doesn't really hold anything at all, +# so running nm on it is pretty useless. +usenm='no' + +# other Options: + +usemymalloc='no' + +archobjs=ebcdic.o + |