← Back to team overview

yade-dev team mailing list archive

[svn] r1664 - trunk

 

Author: eudoxos
Date: 2009-02-11 12:32:56 +0100 (Wed, 11 Feb 2009)
New Revision: 1664

Modified:
   trunk/SConstruct
Log:
(remove no-warn for c++0x since that flag is not known to gcc-3.4)


Modified: trunk/SConstruct
===================================================================
--- trunk/SConstruct	2009-02-11 10:36:16 UTC (rev 1663)
+++ trunk/SConstruct	2009-02-11 11:32:56 UTC (rev 1664)
@@ -412,7 +412,7 @@
 	env.Append(CPPDEFINES=[('YADE_CAST','dynamic_cast'),('YADE_PTR_CAST','dynamic_pointer_cast')])
 
 if env['gprof']: env.Append(CXXFLAGS=['-pg'],LINKFLAGS=['-pg'],SHLINKFLAGS=['-pg'])
-env.Prepend(CXXFLAGS=['-pipe','-Wall','-Wc++0x-compat'])
+env.Prepend(CXXFLAGS=['-pipe','-Wall']) # '-Wc++0x-compat' ## not know to gcc-3.*
 
 if env['arcs']=='gen': env.Append(CXXFLAGS=['-fprofile-generate'],LINKFLAGS=['-fprofile-generate'])
 if env['arcs']=='use': env.Append(CXXFLAGS=['-fprofile-use'],LINKFLAGS=['-fprofile-use'])