]> git.saurik.com Git - wxWidgets.git/commitdiff
Added some code to override distutils compile flags, but left it
authorRobin Dunn <robin@alldunn.com>
Tue, 20 Nov 2001 02:02:43 +0000 (02:02 +0000)
committerRobin Dunn <robin@alldunn.com>
Tue, 20 Nov 2001 02:02:43 +0000 (02:02 +0000)
commented out since I found that the problem I was seeing is actaully
in Python headers...

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12500 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/my_distutils.py

index cbff3b4e99205e0df32c46b288efccd0b73d50de..12b4e6d09a6d481d83f37b410e7756e72bbbb83b 100644 (file)
@@ -14,6 +14,24 @@ from distutils.ccompiler import \
 
 class MyMSVCCompiler(MSVCCompiler):
 
+##     def __init__ (self,
+##                   verbose=0,
+##                   dry_run=0,
+##                   force=0):
+##         MSVCCompiler.__init__(self, verbose, dry_run, force)
+
+##         self.compile_options = [ '/nologo',
+##                                  '/Ox',
+##                                  '/MD',
+##                                  '/W3',
+##                                  '/GX',
+##                                  ]
+##         self.compile_options_debug = ['/nologo', '/Od', '/MDd', '/W3', '/GX',
+##                                       '/Z7', '/D_DEBUG']
+
+
+
+
     ##------------------------------------------------------------
     ## Override the entire compile method just to add flags to the
     ## RC command.  There should be an easier way to do this from