diff options
Diffstat (limited to 'hints/nonstopux.sh')
-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 + |