mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-30 15:32:37 +08:00
88b41bd164
release.
28 lines
633 B
Bash
28 lines
633 B
Bash
#!/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
|