]> git.saurik.com Git - wxWidgets.git/commitdiff
Added notes for what to do if VC has an internal compiler error.
authorRobin Dunn <robin@alldunn.com>
Fri, 8 Feb 2002 22:23:55 +0000 (22:23 +0000)
committerRobin Dunn <robin@alldunn.com>
Fri, 8 Feb 2002 22:23:55 +0000 (22:23 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14073 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/BUILD.win32.txt
wxPython/setup.py

index 45d09596be4bb41b919e06634406b8ab6565a1e8..2fe8abf75a823e0369293b29f778efa8889615b0 100644 (file)
@@ -242,6 +242,11 @@ C. To build and install wxPython you simply need to execute the
 
          HYBRID:    python setup.py HYBRID=1 install
 
+   NOTE:  If you get an internal compiler error from MSVC then you
+   need to edit setup.py and add in the /GX- flag that is normally
+   commented out.  Just search for "GX-" and uncomment it so it is put
+   into the cflags list.
+
 
 D. At this point you should be able to change into the wxPython\demo
    directory and run the demo:
index 854c34a81f3b04d6108b0a893764d8e6906b3961..28ed092872c1d28feb0aad678c081882a7e1dee0 100755 (executable)
@@ -218,7 +218,9 @@ if os.name == 'nt':
             'advapi32', 'wsock32']
 
 
-    cflags = [] #['/GX-']  # workaround for internal compiler error in MSVC on some machines
+    cflags = [
+             # '/GX-'  # workaround for internal compiler error in MSVC on some machines
+             ]
     lflags = None