[issue4214] no extension debug info with msvc9compiler.py

2015-08-07 Thread Roundup Robot
Roundup Robot added the comment: New changeset 418095f0d711 by Steve Dower in branch '2.7': Issue #4214: Remove ineffectual /pdb:none option from msvc9compiler.py https://hg.python.org/cpython/rev/418095f0d711 New changeset 7c322c296a3b by Steve Dower in branch '3.4': Issue #4214: Remove ineffec

[issue4214] no extension debug info with msvc9compiler.py

2015-08-07 Thread Steve Dower
Changes by Steve Dower : -- assignee: tarek -> steve.dower resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___

[issue4214] no extension debug info with msvc9compiler.py

2015-08-07 Thread Steve Dower
Steve Dower added the comment: This option is no longer set in 3.5/3.6 (which don't use msvc9compiler.py). I'll get it for 2.7 and 3.4. -- type: compile error -> behavior versions: -Python 3.5 ___ Python tracker _

[issue4214] no extension debug info with msvc9compiler.py

2015-08-07 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: +steve.dower ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue4214] no extension debug info with msvc9compiler.py

2015-08-07 Thread John Ehresman
John Ehresman added the comment: I just ran into this again when I installed 2.7.10 -- evidently I had patched my local installation and forgot about it. This is very important to anyone who tries to use the Visual Studio C debugger to debug extension modules. -- nosy: +jpe _

[issue4214] no extension debug info with msvc9compiler.py

2014-07-09 Thread Mark Lawrence
Mark Lawrence added the comment: Patch is against default. The entire distutils test suite ran okay. Would someone like to try this in the real world please. -- components: -Distutils2 keywords: +patch nosy: +BreamoreBoy, dstufft versions: +Python 3.4, Python 3.5 -3rd party, Python 3

[issue4214] no extension debug info with msvc9compiler.py

2010-11-29 Thread Martin v . Löwis
Martin v. Löwis added the comment: Ah ok, then removing the option sounds fine to me (not for 2.6, though). -- versions: -Python 2.6 ___ Python tracker ___ _

[issue4214] no extension debug info with msvc9compiler.py

2010-11-29 Thread Robin Dunn
Robin Dunn added the comment: No, MSVC does not behave that way any longer. Now it simply creates a file named "None", so I expect that the newer versions simply do not support writing the "old-style" debug info written to the DLL or EXE. If a setup script creates more than one extension mod

[issue4214] no extension debug info with msvc9compiler.py

2010-11-29 Thread Martin v . Löwis
Martin v. Löwis added the comment: /pdb:None initially did *not* mean "no debug information", but "no pdb file", see http://msdn.microsoft.com/en-us/library/aa278542(VS.60).aspx Debug information would be embedded to the DLL. Later versions of the VS documentation fail to mention "None" as a

[issue4214] no extension debug info with msvc9compiler.py

2010-11-29 Thread Éric Araujo
Éric Araujo added the comment: Thanks for explaining. Is someone willing to add a test in test_msvc9compiler? -- nosy: +loewis ___ Python tracker ___ ___

[issue4214] no extension debug info with msvc9compiler.py

2010-11-28 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: A .pdb is the "program database" that contain debug info, i.e. the mapping between assembler positions and source lines, the description of data structures, and other things that are necessary to debug a program. --

[issue4214] no extension debug info with msvc9compiler.py

2010-11-27 Thread Éric Araujo
Éric Araujo added the comment: What are pdb files, by the way? -- components: +Distutils2 nosy: +eric.araujo versions: +3rd party, Python 3.2 -Python 2.6, Python 3.0 ___ Python tracker _

[issue4214] no extension debug info with msvc9compiler.py

2009-03-07 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: Like Robin, I think it's better to remove the /pdb option, and let the default behavior, which is (when /debug is present) to generate a .pdb file next to the generated target. ___ Python tracker

[issue4214] no extension debug info with msvc9compiler.py

2009-03-06 Thread Tarek Ziadé
Tarek Ziadé added the comment: Since I am unfamiliar with MSVC, I will need to digg on this, so if anyone can help on this : any idea on what would be the proper fix and why ? -- versions: +Python 2.7, Python 3.0, Python 3.1 ___ Python tracker

[issue4214] no extension debug info with msvc9compiler.py

2009-02-28 Thread Akira Kitada
Changes by Akira Kitada : -- assignee: -> tarek components: +Windows nosy: +tarek ___ Python tracker ___ ___ Python-bugs-list mailing

[issue4214] no extension debug info with msvc9compiler.py

2008-10-27 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc <[EMAIL PROTECTED]> added the comment: Furthermore, /PDB:None is no more supported by VC2008 express. You end up with files named "None"... -- nosy: +amaury.forgeotdarc ___ Python tracker <[EMAIL PROTECTED]>

[issue4214] no extension debug info with msvc9compiler.py

2008-10-27 Thread Robin Dunn
New submission from Robin Dunn <[EMAIL PROTECTED]>: It looks like part of r59290 resulted in /pdb:None always being part of the ldflags_shared_debug list. This means that there will be no debug info stored for extensions built in debug mode, which kinda negates the purpose of doing a debug build