blob: 6113cc300b99ba8dbb481ea992c24854d66f5ead (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
case "$optimize" in
'') optimize="-O1" ;;
esac
d_setregid='undef'
d_setreuid='undef'
case "$usemymalloc" in
'') usemymalloc='y'
ccflags="$ccflags -DNO_RCHECK"
;;
esac
# If somebody ignores the Cray PATH.
case ":$PATH:" in
*:/opt/ctl/bin:*) ;;
'') case "$cc" in
'') test -x /opt/ctl/bin/cc && cc=/opt/ctl/bin/cc ;;
esac
;;
esac
|