[cig-commits] commit: Turning off some anal icc warnings:

Mercurial hg at geodynamics.org
Mon Feb 1 15:30:02 PST 2010


changeset:   210:43f262580e4d
user:        giordani at tango.vpac.org
date:        Wed Dec 16 12:23:26 2009 +1100
files:       SConfigure
description:
Turning off some anal icc warnings:
#869 is for function parameter that are never referenced, we do that lots
#1419 is for function declares in source file, we also do in every file


diff -r 2db1f8718722 -r 43f262580e4d SConfigure
--- a/SConfigure	Wed Dec 16 11:54:00 2009 +1100
+++ b/SConfigure	Wed Dec 16 12:23:26 2009 +1100
@@ -162,6 +162,9 @@ if not (GetOption('help') or GetOption('
 
     # enable all warning except -Wwrite-strings. StGermain API needs modifying.
     env.MergeFlags('-Wall -Wno-write-strings')
+    if env.get('CC', None) == 'icc':
+        env.MergeFlags('-wd869 -wd1419')
+
 
 
 #



More information about the CIG-COMMITS mailing list