Commit 1f861295 authored by Greg Ward's avatar Greg Ward

Don't perpetrate the "_d" hack for naming debugging extensions -- that's

now done in the 'build_ext' command.
parent 4b4fc5a9
......@@ -321,10 +321,6 @@ class MSVCCompiler (CCompiler) :
if debug:
ldflags = self.ldflags_shared_debug
# XXX not sure this belongs here
# extensions in debug_mode are named 'module_d.pyd'
basename, ext = os.path.splitext (output_filename)
output_filename = basename + '_d' + ext
else:
ldflags = self.ldflags_shared
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment