mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r226] Turned off couple tedious warning messages. One (1174) due to incorrect
local O2K system configuration. The other (1429 about long long) is ignorable since long long is standard in the next version of ANSI C.
This commit is contained in:
parent
f23e12ca73
commit
cd5a522434
@ -37,7 +37,10 @@
|
||||
# only apply to that compiler.
|
||||
CC="cc -ansi -64"
|
||||
|
||||
warn="-fullwarn"
|
||||
# -woff 1174 about function declared but not used
|
||||
# -woff 1429 about long long type non-standard
|
||||
warn="-fullwarn -woff 1174,1429"
|
||||
#warn="-woff 1174,1429"
|
||||
|
||||
profile="-pg"
|
||||
|
||||
@ -52,5 +55,6 @@ 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}`"
|
||||
CFLAGS="$CFLAGS $PHDFFLAGS"
|
||||
export CFLAGS
|
||||
fi
|
||||
|
Loading…
x
Reference in New Issue
Block a user