projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1b3a9af
)
Added compiler flags suggested by Thomas Heller: optimize, use multi-threaded
author
Greg Ward
<gward@python.net>
Mon, 17 Jan 2000 20:40:48 +0000
(20:40 +0000)
committer
Greg Ward
<gward@python.net>
Mon, 17 Jan 2000 20:40:48 +0000
(20:40 +0000)
RT library.
Lib/distutils/msvccompiler.py
patch
|
blob
|
history
diff --git
a/Lib/distutils/msvccompiler.py
b/Lib/distutils/msvccompiler.py
index 48453768d25a929d455992449b772e5f3e05b90b..50fd4622f3715dd8d49358d78ddc5af6aca5d67e 100644
(file)
--- 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']