classification
Title: MSVC .pdb files not created by python 2.7 distutils
Type: Stage:
Components: Distutils, Windows Versions: Python 3.2, Python 3.1, Python 2.7
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: tarek Nosy List: eric.araujo, jpe, loewis, tarek, theller
Priority: normal Keywords:

Created on 2010-09-02 15:52 by jpe, last changed 2010-09-04 15:14 by loewis.

Messages (2)
msg115389 - (view) Author: John Ehresman (jpe) * Date: 2010-09-02 15:52
.pdb files are not created because /pdb:None is set as an option on line 415 of msvc9compiler.py.  Removing the /pdb:None works to write the .pdb file and allow symbols to be loaded in the VS 2008 debugger in the one extension I tried.  Anyone know why /pdb:None was added?
msg115576 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2010-09-04 15:14
See the subversion history. It was added in r14344, which supposedly originated from Thomas Heller, so he should know.

Thomas, what's the reason for suppressing PDB files?
History
Date User Action Args
2010-09-04 15:14:24loewissetnosy: + loewis, theller
messages: + msg115576
2010-09-02 18:30:54eric.araujosetnosy: + eric.araujo, tarek

assignee: tarek
components: + Distutils
versions: + Python 3.1, Python 3.2
2010-09-02 15:52:13jpecreate