blob: 95207fbf6138d243f9bebc22edb5dbee97875dbf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/bin/sh
# Site configuration -- do not distribute this file.
CC="cc -ansi -64"
# -woff 1174 about function declared but not used
# -woff 1429 about long long type non-standard
# -woff 1209 about constant expressions
# -woff 1196 about __vfork() being implicitly declared, config prob.
warn="-fullwarn -woff 1174,1429,1209,1196"
#warn="-woff 1174,1429,1209,1196"
profile="-pg"
debug="-g"
#production="-O -DNDEBUG"
default_mode='$debug $warn'
RANLIB=: # SGI needs not ranlib
# Don't set CFLAGS if the user already did.
if test -z "$CFLAGS"; then
CFLAGS="`eval echo ${HDF5_MODE:-$default_mode}`"
export CFLAGS
fi
|