diff options
Diffstat (limited to 'scons/generic.py')
-rw-r--r-- | scons/generic.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/scons/generic.py b/scons/generic.py index 26ba309d686..01a374e3633 100644 --- a/scons/generic.py +++ b/scons/generic.py @@ -405,13 +405,17 @@ def generate(env): ] if env['machine'] == 'x86_64': ccflags += ['-m64'] + # See also: + # - http://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html ccflags += [ + '-Werror=declaration-after-statement', '-Wall', '-Wmissing-prototypes', + '-Wmissing-field-initializers', + '-Wpointer-arith', '-Wno-long-long', - '-Wdeclaration-after-statement', '-ffast-math', - '-pedantic', + '-std=gnu99', '-fmessage-length=0', # be nice to Eclipse ] if msvc: |