DEBUG_UNDEFINED should also trap illegal instructions

This commit is contained in:
Dane Springmeyer 2012-02-21 11:04:09 -08:00
parent 4c4bfc8fc5
commit 03bfc015a6

View file

@ -1432,7 +1432,7 @@ if not preconfigured:
env.Append(CXXFLAGS = gcc_cxx_flags + '-O%s -finline-functions -Wno-inline -Wno-parentheses -Wno-char-subscripts %s' % (env['OPTIMIZATION'],ndebug_flags))
if env['DEBUG_UNDEFINED']:
env.Append(CXXFLAGS = '-fcatch-undefined-behavior') #-ftrapv -fwrapv
env.Append(CXXFLAGS = '-fcatch-undefined-behavior -ftrapv -fwrapv')
if 'python' in env['BINDINGS']:
if not os.access(env['PYTHON'], os.X_OK):