From cd6234d0a02325bc45036b958077e008c4a70fc2 Mon Sep 17 00:00:00 2001 From: Albert Cheng Date: Mon, 26 Oct 1998 17:55:45 -0500 Subject: [svn-r801] Added compiler options to suppress some warning messages from the compiler and loader. --- config/irix6.2 | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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? -- cgit v0.12