summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>1998-02-06 03:06:48 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>1998-02-06 03:06:48 (GMT)
commitcd5a522434d15da1b6e88d7fd997fce0c554da23 (patch)
tree4c24de125b50c941a8541ff2a99ac6986f894485 /config
parentf23e12ca7383bcd910918c7f7a82455fa7eaad87 (diff)
downloadhdf5-cd5a522434d15da1b6e88d7fd997fce0c554da23.zip
hdf5-cd5a522434d15da1b6e88d7fd997fce0c554da23.tar.gz
hdf5-cd5a522434d15da1b6e88d7fd997fce0c554da23.tar.bz2
[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.
Diffstat (limited to 'config')
-rw-r--r--config/irix646
1 files changed, 5 insertions, 1 deletions
diff --git a/config/irix64 b/config/irix64
index 3d4b3eb..4753d86 100644
--- a/config/irix64
+++ b/config/irix64
@@ -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