[Python-checkins] r68469 - in python/trunk/PC/VC6: _tkinter.dsp readme.txt

hirokazu.yamamoto python-checkins at python.org
Sat Jan 10 09:12:09 CET 2009


Author: hirokazu.yamamoto
Date: Sat Jan 10 09:12:09 2009
New Revision: 68469

Log:
Link to debug version of Tcl/Tk when python is built as debug version.

Modified:
   python/trunk/PC/VC6/_tkinter.dsp
   python/trunk/PC/VC6/readme.txt

Modified: python/trunk/PC/VC6/_tkinter.dsp
==============================================================================
--- python/trunk/PC/VC6/_tkinter.dsp	(original)
+++ python/trunk/PC/VC6/_tkinter.dsp	Sat Jan 10 09:12:09 2009
@@ -54,7 +54,7 @@
 # ADD BSC32 /nologo
 LINK32=link.exe
 # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept
-# ADD LINK32 ..\..\..\tcltk\lib\tk85.lib ..\..\..\tcltk\lib\tcl85.lib odbc32.lib odbccp32.lib user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /base:"0x1e190000" /subsystem:windows /dll /debug /machine:I386 /out:"./_tkinter_d.pyd" /pdbtype:sept
+# ADD LINK32 ..\..\..\tcltk\lib\tk85g.lib ..\..\..\tcltk\lib\tcl85g.lib odbc32.lib odbccp32.lib user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /base:"0x1e190000" /subsystem:windows /dll /debug /machine:I386 /out:"./_tkinter_d.pyd" /pdbtype:sept
 # SUBTRACT LINK32 /pdb:none
 
 !ELSEIF  "$(CFG)" == "_tkinter - Win32 Release"

Modified: python/trunk/PC/VC6/readme.txt
==============================================================================
--- python/trunk/PC/VC6/readme.txt	(original)
+++ python/trunk/PC/VC6/readme.txt	Sat Jan 10 09:12:09 2009
@@ -72,6 +72,10 @@
     svn export http://svn.python.org/projects/external/tk-8.5.2.0 tk8.5.2
     svn export http://svn.python.org/projects/external/tix-8.4.3.1 tix8.4.3
 
+    Debug Build
+    -----------
+    To build debug version, add DEBUG=1 to all nmake call bellow.
+
     Build Tcl first (done here w/ MSVC 6 on Win2K)
     ---------------
     If your environment doesn't have struct _stat64, you need to apply


More information about the Python-checkins mailing list