DEBUG_UNDEFINED should also trap illegal instructions
This commit is contained in:
parent
4c4bfc8fc5
commit
03bfc015a6
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue