diff options
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/build_tkinter.py | 2 | ||||
-rw-r--r-- | PCbuild/readme.txt | 10 |
2 files changed, 7 insertions, 5 deletions
diff --git a/PCbuild/build_tkinter.py b/PCbuild/build_tkinter.py index a7205d0..574d768 100644 --- a/PCbuild/build_tkinter.py +++ b/PCbuild/build_tkinter.py @@ -25,7 +25,7 @@ ROOT = os.path.abspath(os.path.join(here, par, par)) # Windows 2000 compatibility: WINVER 0x0500 # http://msdn2.microsoft.com/en-us/library/aa383745.aspx NMAKE = ('nmake /nologo /f %s ' - 'COMPILERFLAGS=\"-DWINVER=0x0500 -D_WIN32_WINNT=0x0500 -DNTDDI_VERSION=NTDDI_WIN2KSP4\"' + 'COMPILERFLAGS=\"-DWINVER=0x0500 -D_WIN32_WINNT=0x0500 -DNTDDI_VERSION=NTDDI_WIN2KSP4\" ' '%s %s') def nmake(makefile, command="", **kw): diff --git a/PCbuild/readme.txt b/PCbuild/readme.txt index 00b7de0..764ab8a 100644 --- a/PCbuild/readme.txt +++ b/PCbuild/readme.txt @@ -117,7 +117,7 @@ _tkinter Build with build_tkinter.py --------------------------- The PCbuild directory contains a Python script which automates all - steps. Run the script in a Visual Studio 2009 command prompt with + steps. Run the script in a Visual Studio 2008 command prompt with python build_tkinter.py Win32 @@ -312,9 +312,11 @@ Edition. Profile Guided Optimization --------------------------- -The solution has two configurations for PGO. The PGInstrument configuration -must be build first. The PGInstrument binaries are lniked against a profiling -library and contain extra debug information. The PGUpdate configuration takes the profiling data and generates optimized binaries. +The solution has two configurations for PGO. The PGInstrument +configuration must be build first. The PGInstrument binaries are +lniked against a profiling library and contain extra debug +information. The PGUpdate configuration takes the profiling data and +generates optimized binaries. The build_pgo.bat script automates the creation of optimized binaries. It creates the PGI files, runs the unit test suite or PyBench with the PGI |