diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-04-28 12:59:23 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-04-28 12:59:23 +0000 |
commit | a216278e445bcb0a1a5a932d064bb4fc497fec9a (patch) | |
tree | c287d22c0c74e533a7db8af33e689374212508e6 /hints | |
parent | bce880cf19770c622e10fd92d23b9c328abbab29 (diff) | |
parent | d5a71f3055c3a1145f32dafabd5c3bba8ef27f4d (diff) | |
download | perl-a216278e445bcb0a1a5a932d064bb4fc497fec9a.tar.gz |
Integrate with Sarathy.
p4raw-id: //depot/cfgperl@5996
Diffstat (limited to 'hints')
-rw-r--r-- | hints/posix-bc.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hints/posix-bc.sh b/hints/posix-bc.sh index ec21bc327e..2e46b8cf00 100644 --- a/hints/posix-bc.sh +++ b/hints/posix-bc.sh @@ -6,19 +6,19 @@ # thanks to the authors of the os390.sh # -# To get ANSI C, we need to use c89, and ld doesn't exist +# To get ANSI C, we need to use c89, and ld does not exist cc='c89' ld='c89' # C-Flags: -ccflags='-DPOSIX_BC -DUSE_PURE_BISON -D_XOPEN_SOURCE_EXTENDED' +ccflags='-K enum_long,llm_case_lower,llm_keep,no_integer_overflow -DPOSIX_BC -DUSE_PURE_BISON -D_XOPEN_SOURCE_EXTENDED' # Flags on a RISC-Host (SUNRISE): if [ -n "`bs2cmd SHOW-SYSTEM-INFO | egrep 'HSI-ATT.*TYPE.*SR'`" ]; then echo echo "Congratulations, you are running a machine with Sunrise CPUs." echo "Let's hope you have the matching RISC compiler as well." - ccflags='-K risc_4000 -DPOSIX_BC -DUSE_PURE_BISON -D_XOPEN_SOURCE_EXTENDED' + ccflags="-K risc_4000 $ccflags" ldflags='-K risc_4000' fi @@ -30,7 +30,7 @@ so='none' usedl='no' dlext='none' -# On BS2000/Posix, libc.a doesn't really hold anything at all, +# On BS2000/Posix, libc.a does not really hold anything at all, # so running nm on it is pretty useless. usenm='no' |