ever since certain updates in that distribution. This fixes the q3map2 crash,
but no more optimizations.
git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/trunk@486
8a3a26a2-13c4-0310-b231-
cf6edde360e5
env.Append( CXXFLAGS = [ '-g' ] )
env.Append( CPPDEFINES = [ '_DEBUG' ] )
else:
- env.Append( CFLAGS = [ '-O2', '-fno-strict-aliasing' ] )
- env.Append( CXXFLAGS = [ '-O2', '-fno-strict-aliasing' ] )
+ # '-O' causes q3map2 errors on Ubuntu 10.10 32 bit.
+ env.Append( CFLAGS = [ ] )
+ env.Append( CXXFLAGS = [ ] )
def CheckoutOrUpdate( self, svnurl, path ):
if ( os.path.exists( path ) ):