gcc: Version 4.3 adds some warnings that we're turning off.

We just can't deal with right now.
This commit is contained in:
Nathan Binkert 2008-09-27 21:03:50 -07:00
parent 80d9be86e6
commit d2f172ab8d

View file

@ -351,6 +351,7 @@ if env['GCC']:
env.Append(CCFLAGS='-pipe')
env.Append(CCFLAGS='-fno-strict-aliasing')
env.Append(CCFLAGS=Split('-Wall -Wno-sign-compare -Werror -Wundef'))
env.Append(CXXFLAGS='-Wno-deprecated')
elif env['ICC']:
pass #Fix me... add warning flags once we clean up icc warnings
elif env['SUNCC']: