we also need the /Z7 flag for debug info on MSVC

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@71552 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2012-05-24 23:27:24 +00:00
parent 2387664639
commit 63c7167aca

View File

@@ -100,7 +100,7 @@ def configure(conf):
lst.remove(opt)
except ValueError:
pass
lst[1:1] = '/Od /MDd /D_DEBUG'.split()
lst[1:1] = '/Od /MDd /Z7 /D_DEBUG'.split()
conf.env['LINKFLAGS_PYEXT'].append('/DEBUG')
conf.env['LIB_PYEXT'][0] += '_d'
@@ -318,4 +318,4 @@ def _copyEnvGroup(env, srcPostfix, destPostfix):
newKey = key[:-len(srcPostfix)] + destPostfix
env[newKey] = copy.copy(env[key])
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------