diff options
author | Greg Ward <gward@python.net> | 2000-01-17 20:40:48 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-01-17 20:40:48 (GMT) |
commit | 8dbf681a976e410e43f6a55d1071184603b855f5 (patch) | |
tree | 5a2de3686844a2b1d36e4041246e947223cba85d | |
parent | 1b3a9af5cf4827ff8248a69ef01468044ae67f25 (diff) | |
download | cpython-8dbf681a976e410e43f6a55d1071184603b855f5.zip cpython-8dbf681a976e410e43f6a55d1071184603b855f5.tar.gz cpython-8dbf681a976e410e43f6a55d1071184603b855f5.tar.bz2 |
Added compiler flags suggested by Thomas Heller: optimize, use multi-threaded
RT library.
-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 4845376..50fd462 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' ] + self.compile_options = [ '/nologo', '/Ox', '/MD', '/GD' ] self.ldflags_shared = ['/DLL', '/nologo'] self.ldflags_static = [ '/nologo'] |