diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1999-11-17 21:58:25 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1999-11-17 21:58:25 (GMT) |
commit | ef4c6e6bc8a7ec92ef2db5d83633b6abc86657d6 (patch) | |
tree | 31696bba3efb7e140d8e0eeec87acdebe57ddc95 | |
parent | 0deb7ff895c22f2930c79b3a9e4a10ceabb282ae (diff) | |
download | hdf5-ef4c6e6bc8a7ec92ef2db5d83633b6abc86657d6.zip hdf5-ef4c6e6bc8a7ec92ef2db5d83633b6abc86657d6.tar.gz hdf5-ef4c6e6bc8a7ec92ef2db5d83633b6abc86657d6.tar.bz2 |
[svn-r1834] Blocked remark # 3201 (parameter unused) since the SGI compiler doesn't
recognize our "UNUSED" macro and whines a lot about the unused parameters.
-rw-r--r-- | config/irix6.x | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/config/irix6.x b/config/irix6.x index f46185c..7932854 100644 --- a/config/irix6.x +++ b/config/irix6.x @@ -41,24 +41,25 @@ case "X-$CC_BASENAME" in ;; esac - # Do *not* use -ansi because it prevents hdf5 from being able - # to read modification dates from the file. On some systems it - # can also result in compile errors in system header files - # since hdf5 includes a couple non-ANSI header files. - #CFLAGS="$CFLAGS -ansi" + # Do *not* use -ansi because it prevents hdf5 from being able + # to read modification dates from the file. On some systems it + # can also result in compile errors in system header files + # since hdf5 includes a couple non-ANSI header files. + #CFLAGS="$CFLAGS -ansi" # Always turn off these compiler warnings for the -64 compiler: # 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) + # 1209: constant expressions + # 1429: the `long long' type is not standard # 1685: turn off warnings about turning off invalid warnings - CFLAGS="$CFLAGS -woff 1174,1429,1209,1196,1685" + # 3201: remark - parameter not referenced + CFLAGS="$CFLAGS -woff 1174,1429,1209,1196,1685,3201" # Always turn off these compiler warnings for the old compiler: # 799: the `long long' type is not standard # 803: turn off warnings about turning off invalid warnings - # 835: __vfork() (this is an SGI config problem) + # 835: __vfork() (this is an SGI config problem) CFLAGS="$CFLAGS -woff 799,803,835" # Always turn off these loader warnings: |