diff options
author | Greg Ward <gward@python.net> | 2000-01-17 21:57:17 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-01-17 21:57:17 (GMT) |
commit | 01f5215828749f01f3c1857e78ac3a49adb12704 (patch) | |
tree | 667bc175ab2af5d14dd550477b88a4c7c24cd639 /Lib/distutils/msvccompiler.py | |
parent | 8dbf681a976e410e43f6a55d1071184603b855f5 (diff) | |
download | cpython-01f5215828749f01f3c1857e78ac3a49adb12704.zip cpython-01f5215828749f01f3c1857e78ac3a49adb12704.tar.gz cpython-01f5215828749f01f3c1857e78ac3a49adb12704.tar.bz2 |
Removed /GD switch -- currently ignored by MSVC.
Diffstat (limited to 'Lib/distutils/msvccompiler.py')
-rw-r--r-- | Lib/distutils/msvccompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/msvccompiler.py b/Lib/distutils/msvccompiler.py index 50fd462..a07b4b8 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'] |