diff options
-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? |