diff options
Diffstat (limited to 'contrib/perl5/hints/nonstopux.sh')
-rw-r--r-- | contrib/perl5/hints/nonstopux.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/contrib/perl5/hints/nonstopux.sh b/contrib/perl5/hints/nonstopux.sh new file mode 100644 index 0000000..aec05ee --- /dev/null +++ b/contrib/perl5/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 + |