Removed /GD switch -- currently ignored by MSVC.
authorGreg Ward <gward@python.net>
Mon, 17 Jan 2000 21:57:17 +0000 (21:57 +0000)
committerGreg Ward <gward@python.net>
Mon, 17 Jan 2000 21:57:17 +0000 (21:57 +0000)
Lib/distutils/msvccompiler.py

index 50fd4622f3715dd8d49358d78ddc5af6aca5d67e..a07b4b8ea6539f4d08d2bd64de5f1ee3d2f83883 100644 (file)
@@ -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']