diff options
author | Mark Murray <markm@FreeBSD.org> | 2002-03-16 20:14:31 +0000 |
---|---|---|
committer | Mark Murray <markm@FreeBSD.org> | 2002-03-16 20:14:31 +0000 |
commit | cf90a21ebd2262e09730a5a55c5ccb62f1622fad (patch) | |
tree | 116739180f0198b4d3857979a8e84444c2fe0949 /contrib/perl5/hints | |
parent | fc75d0664419eb8c8f264d8f298df2cd155c8966 (diff) |
Notes
Diffstat (limited to 'contrib/perl5/hints')
-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 0000000000000..aec05ee680a88 --- /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 + |