From: Greg Ward Date: Mon, 17 Jan 2000 21:57:17 +0000 (+0000) Subject: Removed /GD switch -- currently ignored by MSVC. X-Git-Tag: v1.6a1~542 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=01f5215828749f01f3c1857e78ac3a49adb12704;p=thirdparty%2FPython%2Fcpython.git Removed /GD switch -- currently ignored by MSVC. --- diff --git a/Lib/distutils/msvccompiler.py b/Lib/distutils/msvccompiler.py index 50fd4622f371..a07b4b8ea653 100644 --- a/Lib/distutils/msvccompiler.py +++ b/Lib/distutils/msvccompiler.py @@ -37,7 +37,7 @@ class MSVCCompiler (CCompiler) : self.cc = "cl.exe" self.link = "link.exe" self.preprocess_options = None - self.compile_options = [ '/nologo', '/Ox', '/MD', '/GD' ] + self.compile_options = [ '/nologo', '/Ox', '/MD' ] self.ldflags_shared = ['/DLL', '/nologo'] self.ldflags_static = [ '/nologo']