From e1378aec016e53b68e2eebb6e629d577473942d2 Mon Sep 17 00:00:00 2001 From: Pekka Pirinen Date: Thu, 10 Sep 1998 16:24:38 +0100 Subject: [PATCH] Suppress more warnings (change.epcore.anchovy.160117) Copied from Perforce Change: 20037 ServerID: perforce.ravenbrook.com --- mps/src/i6cc.gmk | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/mps/src/i6cc.gmk b/mps/src/i6cc.gmk index 90327d3d754..6101975b4a9 100644 --- a/mps/src/i6cc.gmk +++ b/mps/src/i6cc.gmk @@ -1,7 +1,7 @@ # impl.gmk.ic: GNUMAKEFILE FRAGMENT FOR IRIX 6 CC (N32 or N64 ABI) # -# $HopeName: MMsrc!i6cc.gmk(trunk.3) $ -# Copyright (C) 1996, 1997, 1998 Harlequin Group, all rights reserved +# $HopeName$ +# Copyright (C) 1997, 1998 Harlequin Group plc. All rights reserved. # # This file is included by platform makefiles that use the IRIX 6 CC # compiler. It defines the compiler specific variables that the @@ -11,6 +11,10 @@ CC = cc +# suppress error(1174): function "foo" was declared but never referenced +# because it happens with vfork in included from vmi5.c +# suppress error(1196): function declared implicitly +# because it happens with __vfork in included from vmi5.c # suppress remark(1209): 'controlling expression is constant' # because it occurs in 'while(0)' and statically determined checks # suppress remark(1552): 'variable "foo" was set but never used' @@ -18,7 +22,7 @@ CC = cc # can't use -pedantic because Irix header files have #ident CFLAGSCOMPILER = -ansi -fullwarn -w2 -diag_error 1000-9999 \ - -diag_suppress 1209,1552 + -diag_suppress 1174,1196,1209,1552 CFLAGSDEBUG = -g CFLAGSOPT = -O -g3 CFLAGSOPTNODEBUG = -O