From: Greg Ward Date: Mon, 17 Jan 2000 20:40:48 +0000 (+0000) Subject: Added compiler flags suggested by Thomas Heller: optimize, use multi-threaded X-Git-Tag: v1.6a1~543 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8dbf681a976e410e43f6a55d1071184603b855f5;p=thirdparty%2FPython%2Fcpython.git Added compiler flags suggested by Thomas Heller: optimize, use multi-threaded RT library. --- diff --git a/Lib/distutils/msvccompiler.py b/Lib/distutils/msvccompiler.py index 48453768d25a..50fd4622f371 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']