diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1998-10-26 22:55:45 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1998-10-26 22:55:45 (GMT) |
commit | cd6234d0a02325bc45036b958077e008c4a70fc2 (patch) | |
tree | 78322c6fc50d2fb28422969cbed88f3fe8c3cd50 | |
parent | 7dcbae97f23f8409ed8d60640b3b2a8aaed70978 (diff) | |
download | hdf5-cd6234d0a02325bc45036b958077e008c4a70fc2.zip hdf5-cd6234d0a02325bc45036b958077e008c4a70fc2.tar.gz hdf5-cd6234d0a02325bc45036b958077e008c4a70fc2.tar.bz2 |
[svn-r801] Added compiler options to suppress some warning messages from
the compiler and loader.
-rw-r--r-- | config/irix6.2 | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/config/irix6.2 b/config/irix6.2 index de0b2bb..c98fef9 100644 --- a/config/irix6.2 +++ b/config/irix6.2 @@ -12,7 +12,15 @@ RANLIB=: # What must *always* be present for things to compile correctly? -CFLAGS="$CFLAGS -ansi -n32" +# Always turn off these compiler warnings: +# 1174: function declared but not used +# 1429: the `long long' type is not standard +# 1209: constant expressions +# 1196: __vfork() (this is an SGI config problem) +# Always turn off these loader warnings: +# 84: a library is not used +# +CFLAGS="$CFLAGS -ansi -n32 -woff 1174,1429,1209,1196 -Wl,-woff,84" #CPPFLAGS="$CPPFLAGS -I." # What compiler flags should be used for code development? |