Commit b4701e63 authored by Thomas Heller's avatar Thomas Heller

On Windows, we must build a debug version iff running a debug build of

Python
parent e2caef76
...@@ -28,6 +28,10 @@ class BuildExtTestCase(unittest.TestCase): ...@@ -28,6 +28,10 @@ class BuildExtTestCase(unittest.TestCase):
dist = Distribution({'name': 'xx', 'ext_modules': [xx_ext]}) dist = Distribution({'name': 'xx', 'ext_modules': [xx_ext]})
dist.package_dir = self.tmp_dir dist.package_dir = self.tmp_dir
cmd = build_ext(dist) cmd = build_ext(dist)
if os.name == "nt":
# On Windows, we must build a debug version iff running
# a debug build of Python
cmd.debug = sys.executable.endswith("_d.exe")
cmd.build_lib = self.tmp_dir cmd.build_lib = self.tmp_dir
cmd.build_temp = self.tmp_dir cmd.build_temp = self.tmp_dir
......
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