Eliminated warnings caused by passing the -ftemplate-depth parameter to the C compiler

This commit is contained in:
Ray Speth 2011-12-14 19:35:07 +00:00
parent c677ea5cbd
commit 4308ebf40d

View file

@ -66,8 +66,8 @@ else:
sys.exit(1)
if env['CC'] == 'gcc':
defaults.cxxFlags = ''
defaults.ccFlags = ['-ftemplate-depth-128', '-Wall', '-g']
defaults.cxxFlags = ['-ftemplate-depth-128']
defaults.ccFlags = ['-Wall', '-g']
defaults.debugCcFlags = ['-O0', '-fno-inline']
defaults.releaseCcFlags = ['-O3', '-finline-functions', '-Wno-inline', '-DNDEBUG']
defaults.debugLinkFlags = []