diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-10-19 19:33:13 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-10-19 19:33:13 +0000 |
commit | 48bcfe03d254899e504814511c34395dab86369f (patch) | |
tree | 0666f71c5b46159aff772299caf3ed474b15ec3f /hints | |
parent | a21ac4552d742a18f489042bfa4e20a8d8d978a2 (diff) | |
download | perl-48bcfe03d254899e504814511c34395dab86369f.tar.gz |
NonStop-UX patches from Tom Bates <tom.bates@compaq.com>
p4raw-id: //depot/perl@7371
Diffstat (limited to 'hints')
-rw-r--r-- | hints/nonstopux.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/hints/nonstopux.sh b/hints/nonstopux.sh new file mode 100644 index 0000000000..f93c312203 --- /dev/null +++ b/hints/nonstopux.sh @@ -0,0 +1,17 @@ +# tom_bates@att.net +# mips-compaq-nonstopux + +. $src/hints/svr4.sh + +case "$cc" in + *gcc*) + ccflags='-fno-strict-aliasing' + lddlflags='-shared' + ldflags='' + ;; + '') + cc="cc -Xa -Olimit 4096" + malloctype="void *" + ;; +esac + |