blob: fe264e363ef7a16d66c90e713cf34bd5512e64ba [file] [log] [blame]
Christian Heimes5b5e81c2007-12-31 16:14:33 +00001Building Python using VC++ 9.0
2------------------------------
Tim Peters4b5fb072000-07-01 00:03:43 +00003This directory is used to build Python for Win32 platforms, e.g. Windows
Christian Heimes5b5e81c2007-12-31 16:14:33 +000042000, XP and Vista. It requires Microsoft Visual C++ 9.0
5(a.k.a. Visual Studio .NET 2008).
Guido van Rossum15b239f1998-05-26 14:16:23 +00006(For other Windows platforms and compilers, see ../PC/readme.txt.)
7
Christian Heimes5b5e81c2007-12-31 16:14:33 +00008All you need to do is open the workspace "pcbuild.sln" in Visual Studio,
9select the desired combination of configuration and platform and eventually
10build the solution. Unless you are going to debug a problem in the core or
11you are going to create an optimized build you want to select "Release" as
12configuration.
Guido van Rossum15b239f1998-05-26 14:16:23 +000013
Christian Heimes5b5e81c2007-12-31 16:14:33 +000014The PCbuild directory is compatible with all versions of Visual Studio from
15VS C++ Express Edition over the standard edition up to the professional
16edition. However the express edition does support features like solution
17folders or profile guided optimization (PGO). The missing bits and pieces
18won't stop you from building Python.
Guido van Rossum15b239f1998-05-26 14:16:23 +000019
Christian Heimes5b5e81c2007-12-31 16:14:33 +000020The solution is configured to build the projects in the correct order. "Build
21Solution" or F6 takes care of dependencies except for x64 builds. To make
22cross compiling x64 builds on a 32bit OS possible the x64 builds require a
2332bit version of Python.
Guido van Rossum15b239f1998-05-26 14:16:23 +000024
Tim Peters4b5fb072000-07-01 00:03:43 +000025
Christian Heimes5b5e81c2007-12-31 16:14:33 +000026NOTE:
27 You probably don't want to build most of the other subprojects, unless
28 you're building an entire Python distribution from scratch, or
29 specifically making changes to the subsystems they implement, or are
30 running a Python core buildbot test slave; see SUBPROJECTS below)
Guido van Rossum15b239f1998-05-26 14:16:23 +000031
32When using the Debug setting, the output files have a _d added to
Martin v. Löwisff0940f2007-08-30 05:40:17 +000033their name: python30_d.dll, python_d.exe, parser_d.pyd, and so on.
Guido van Rossume79cf321998-07-07 22:35:03 +000034
Christian Heimes5b5e81c2007-12-31 16:14:33 +000035The 32bit builds end up in the solution folder PCbuild while the x64 builds
36land in the amd64 subfolder. The PGI and PGO builds for profile guided
37optimization end up in their own folders, too.
38
Tim Peters4b5fb072000-07-01 00:03:43 +000039SUBPROJECTS
40-----------
Tim Peters610a8272000-07-01 02:51:23 +000041These subprojects should build out of the box. Subprojects other than the
Tim Petersbefc97c2001-01-18 19:01:39 +000042main ones (pythoncore, python, pythonw) generally build a DLL (renamed to
Tim Peters610a8272000-07-01 02:51:23 +000043.pyd) from a specific module so that users don't have to load the code
Tim Peters4b5fb072000-07-01 00:03:43 +000044supporting that module unless they import the module.
Guido van Rossume79cf321998-07-07 22:35:03 +000045
Tim Peters97c96402001-01-17 23:23:13 +000046pythoncore
Tim Peters4b5fb072000-07-01 00:03:43 +000047 .dll and .lib
48python
49 .exe
50pythonw
51 pythonw.exe, a variant of python.exe that doesn't pop up a DOS box
52_socket
53 socketmodule.c
Tim Petersd66595f2001-02-04 03:09:53 +000054_testcapi
Tim Petersb16c56f2001-02-02 21:24:51 +000055 tests of the Python C API, run via Lib/test/test_capi.py, and
Tim Petersd66595f2001-02-04 03:09:53 +000056 implemented by module Modules/_testcapimodule.c
Tim Petersb012a152002-02-13 23:56:46 +000057pyexpat
58 Python wrapper for accelerated XML parsing, which incorporates stable
59 code from the Expat project: http://sourceforge.net/projects/expat/
Tim Peters4b5fb072000-07-01 00:03:43 +000060select
61 selectmodule.c
Tim Peters19f52c22001-01-24 10:07:22 +000062unicodedata
Tim Peters4b5fb072000-07-01 00:03:43 +000063 large tables of Unicode data
Tim Peters4b5fb072000-07-01 00:03:43 +000064winsound
65 play sounds (typically .wav files) under Windows
66
Christian Heimes5b5e81c2007-12-31 16:14:33 +000067The following subprojects will generally NOT build out of the box. They
Tim Peters4b5fb072000-07-01 00:03:43 +000068wrap code Python doesn't control, and you'll need to download the base
Tim Petersaff12842000-08-25 06:52:44 +000069packages first and unpack them into siblings of PCbuilds's parent
Christian Heimes5b5e81c2007-12-31 16:14:33 +000070directory; for example, if your PCbuild is ..\dist\py3k\PCbuild\,
71unpack into new subdirectories of ..\dist\.
Tim Peters4b5fb072000-07-01 00:03:43 +000072
73_tkinter
Tim Peters077736b2002-11-14 23:24:40 +000074 Python wrapper for the Tk windowing system. Requires building
Christian Heimes5b5e81c2007-12-31 16:14:33 +000075 Tcl/Tk first. Following are instructions for Tcl/Tk 8.4.16.
76
77 NOTE: The 64 build builds must land in tcltk64 instead of tcltk.
Tim Peters077736b2002-11-14 23:24:40 +000078
79 Get source
80 ----------
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000081 In the dist directory, run
Christian Heimes5b5e81c2007-12-31 16:14:33 +000082 svn export http://svn.python.org/projects/external/tcl8.4.16
83 svn export http://svn.python.org/projects/external/tk8.4.16
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000084 svn export http://svn.python.org/projects/external/tix-8.4.0
Tim Peters077736b2002-11-14 23:24:40 +000085
Christian Heimes5b5e81c2007-12-31 16:14:33 +000086 Build with build_tkinter.py
87 ---------------------------
88 The PCbuild directory contains a Python script which automates all
89 steps. Run the script in a Visual Studio 2009 command prompt with
90
91 python build_tkinter.py Win32
92
93 Use x64 instead of Win32 for the x64 platform.
94
95 Build Tcl first
Tim Peters6c629952002-11-15 18:36:11 +000096 ---------------
Christian Heimes5b5e81c2007-12-31 16:14:33 +000097 Use "Start -> All Programs -> Microsoft Visual Studio 2008
98 -> Visual Studio Tools -> Visual Studio 2008 Command Prompt"
Guido van Rossumd54357d2004-03-20 21:00:26 +000099 to get a shell window with the correct environment settings
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000100 cd dist\tcl8.4.16\win
Tim Peters077736b2002-11-14 23:24:40 +0000101 nmake -f makefile.vc
Martin v. Löwis6de2d4d2004-08-30 09:22:04 +0000102 nmake -f makefile.vc INSTALLDIR=..\..\tcltk install
Tim Peters077736b2002-11-14 23:24:40 +0000103
104 XXX Should we compile with OPTS=threads?
105
Tim Peters011de6cc2004-04-11 17:29:12 +0000106 Optional: run tests, via
107 nmake -f makefile.vc test
108
Martin v. Löwis6de2d4d2004-08-30 09:22:04 +0000109 On WinXP Pro, wholly up to date as of 30-Aug-2004:
Tim Peterse82b00f2004-08-30 21:14:51 +0000110 all.tcl: Total 10678 Passed 9969 Skipped 709 Failed 0
Tim Peters011de6cc2004-04-11 17:29:12 +0000111 Sourced 129 Test Files.
Tim Peters077736b2002-11-14 23:24:40 +0000112
Tim Peters077736b2002-11-14 23:24:40 +0000113 Build Tk
Tim Peters6c629952002-11-15 18:36:11 +0000114 --------
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000115 cd dist\tk8.4.16\win
116 nmake -f makefile.vc TCLDIR=..\..\tcl8.4.16
117 nmake -f makefile.vc TCLDIR=..\..\tcl8.4.16 INSTALLDIR=..\..\tcltk install
Tim Peters077736b2002-11-14 23:24:40 +0000118
119 XXX Should we compile with OPTS=threads?
120
Tim Peters077736b2002-11-14 23:24:40 +0000121 XXX Our installer copies a lot of stuff out of the Tcl/Tk install
122 XXX directory. Is all of that really needed for Python use of Tcl/Tk?
123
Tim Peters011de6cc2004-04-11 17:29:12 +0000124 Optional: run tests, via
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000125 nmake -f makefile.vc TCLDIR=..\..\tcl8.4.16 test
Tim Peters011de6cc2004-04-11 17:29:12 +0000126
Martin v. Löwis6de2d4d2004-08-30 09:22:04 +0000127 On WinXP Pro, wholly up to date as of 30-Aug-2004:
Tim Peterse82b00f2004-08-30 21:14:51 +0000128 all.tcl: Total 8420 Passed 6826 Skipped 1581 Failed 13
Martin v. Löwis6de2d4d2004-08-30 09:22:04 +0000129 Sourced 91 Test Files.
Tim Peterse82b00f2004-08-30 21:14:51 +0000130 Files with failing tests: canvImg.test scrollbar.test textWind.test winWm.test
Tim Peters63db6282005-08-07 02:47:12 +0000131
Martin v. Löwis3cf21632004-08-31 16:22:09 +0000132 Built Tix
133 ---------
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000134 cd dist\tix-8.4.0\win
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000135 nmake -f python9.mak
136 nmake -f python9.mak install
Tim Peters4b5fb072000-07-01 00:03:43 +0000137
Tim Petersb0ead4e2002-11-09 04:48:58 +0000138bz2
139 Python wrapper for the libbz2 compression library. Homepage
140 http://sources.redhat.com/bzip2/
Martin v. Löwisf6f79252006-03-13 13:48:05 +0000141 Download the source from the python.org copy into the dist
142 directory:
143
Martin v. Löwis14c1cf82006-03-13 10:52:04 +0000144 svn export http://svn.python.org/projects/external/bzip2-1.0.3
Tim Peters077736b2002-11-14 23:24:40 +0000145
Thomas Heller46a007e2003-08-20 18:27:36 +0000146 A custom pre-link step in the bz2 project settings should manage to
Tim Peters7ccbb072006-03-13 19:43:34 +0000147 build bzip2-1.0.3\libbz2.lib by magic before bz2.pyd (or bz2_d.pyd) is
Thomas Heller46a007e2003-08-20 18:27:36 +0000148 linked in PCbuild\.
149 However, the bz2 project is not smart enough to remove anything under
Martin v. Löwis14c1cf82006-03-13 10:52:04 +0000150 bzip2-1.0.3\ when you do a clean, so if you want to rebuild bzip2.lib
151 you need to clean up bzip2-1.0.3\ by hand.
Tim Peters077736b2002-11-14 23:24:40 +0000152
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000153 All of this managed to build libbz2.lib in
154 bzip2-1.0.3\$platform-$configuration\, which the Python project links in.
Tim Petersb0ead4e2002-11-09 04:48:58 +0000155
156
Tim Peters78e35f92002-11-22 20:00:34 +0000157_bsddb
Tim Peters7ccbb072006-03-13 19:43:34 +0000158 To use the version of bsddb that Python is built with by default, invoke
Martin v. Löwisf6f79252006-03-13 13:48:05 +0000159 (in the dist directory)
Tim Petersb0ead4e2002-11-09 04:48:58 +0000160
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000161 svn export http://svn.python.org/projects/external/db-4.4.20
Martin v. Löwisf6f79252006-03-13 13:48:05 +0000162
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000163 Next open the solution file db-4.4.20\build_win32\Berkeley_DB.sln with
164 Visual Studio and convert the projects to the new format. The standard
165 and professional version of VS 2008 builds the necessary libraries
166 in a pre-link step of _bsddb. However the express edition is missing
167 some pieces and you have to build the libs yourself.
168
169 The _bsddb subprojects depends only on the db_static project of
170 Berkeley DB. You have to choose either "Release", "Release AMD64", "Debug"
171 or "Debug AMD64" as configuration.
Martin v. Löwisf6f79252006-03-13 13:48:05 +0000172
Tim Peters32d996f2006-03-13 19:35:53 +0000173 Alternatively, if you want to start with the original sources,
Martin v. Löwisf6f79252006-03-13 13:48:05 +0000174 go to Sleepycat's download page:
175 http://www.sleepycat.com/downloads/releasehistorybdb.html
176
177 and download version 4.4.20.
Tim Peters011de6cc2004-04-11 17:29:12 +0000178
179 With or without strong cryptography? You can choose either with or
180 without strong cryptography, as per the instructions below. By
Thomas Heller81391402004-07-02 08:58:46 +0000181 default, Python is built and distributed WITHOUT strong crypto.
Tim Peters011de6cc2004-04-11 17:29:12 +0000182
Martin v. Löwisf6f79252006-03-13 13:48:05 +0000183 Unpack the sources; if you downloaded the non-crypto version, rename
184 the directory from db-4.4.20.NC to db-4.4.20.
Tim Peters011de6cc2004-04-11 17:29:12 +0000185
Martin v. Löwisf6f79252006-03-13 13:48:05 +0000186 Now apply any patches that apply to your version.
Tim Petersa0d781a2004-04-11 18:23:06 +0000187
Tim Peters00640262003-01-24 15:31:31 +0000188 Open
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000189 db-4.4.20\docs\ref\build_win\intro.html
Tim Peters00640262003-01-24 15:31:31 +0000190
Mark Hammond2362da82004-01-06 04:04:01 +0000191 and follow the "Windows->Building Berkeley DB with Visual C++ .NET"
192 instructions for building the Sleepycat
Tim Peters00640262003-01-24 15:31:31 +0000193 software. Note that Berkeley_DB.dsw is in the build_win32 subdirectory.
Martin v. Löwisf6f79252006-03-13 13:48:05 +0000194 Build the "db_static" project, for "Release" mode.
Tim Peters78e35f92002-11-22 20:00:34 +0000195
Tim Peters00640262003-01-24 15:31:31 +0000196 To run extensive tests, pass "-u bsddb" to regrtest.py. test_bsddb3.py
197 is then enabled. Running in verbose mode may be helpful.
198
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000199_sqlite3
200 Python wrapper for SQLite library.
201
202 Get the source code through
203
204 svn export http://svn.python.org/projects/external/sqlite-source-3.3.4
205
206 To use the extension module in a Python build tree, copy sqlite3.dll into
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000207 the PCbuild folder. The source directory in svn also contains a .def file
208 from the binary release of sqlite3.
Martin v. Löwisb0912412006-03-13 15:37:40 +0000209
Mark Hammondf229f9f2002-12-03 05:47:26 +0000210_ssl
Tim Peterse8bcb252002-12-04 02:39:52 +0000211 Python wrapper for the secure sockets library.
Tim Peters4b5fb072000-07-01 00:03:43 +0000212
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000213 Get the source code through
Mark Hammondf229f9f2002-12-03 05:47:26 +0000214
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000215 svn export http://svn.python.org/projects/external/openssl-0.9.8g
Tim Peterse8bcb252002-12-04 02:39:52 +0000216
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000217 Alternatively, get the latest version from http://www.openssl.org.
Mark Hammondf229f9f2002-12-03 05:47:26 +0000218 You can (theoretically) use any version of OpenSSL you like - the
219 build process will automatically select the latest version.
220
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000221 You must install the NASM assembler from
222 http://www.kernel.org/pub/software/devel/nasm/binaries/win32/
223 for x86 builds. Put nasmw.exe anywhere in your PATH.
224
225 You can also install ActivePerl from
Mark Hammondf229f9f2002-12-03 05:47:26 +0000226 http://www.activestate.com/Products/ActivePerl/
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000227 if you like to use the official sources instead of the files from
228 python's subversion repository. The svn version contains pre-build
229 makefiles and assembly files.
230
231 The build process makes sure that no patented algorithms are included.
232 For now RC5, MDC2 and IDEA are excluded from the build. You may have
233 to manually remove $(OBJ_D)\i_*.obj from ms\nt.mak if the build process
234 complains about missing files or forbidden IDEA. Again the files provided
235 in the subversion repository are already fixed.
Mark Hammondf229f9f2002-12-03 05:47:26 +0000236
237 The MSVC project simply invokes PCBuild/build_ssl.py to perform
Tim Peterse8bcb252002-12-04 02:39:52 +0000238 the build. This Python script locates and builds your OpenSSL
Mark Hammondf229f9f2002-12-03 05:47:26 +0000239 installation, then invokes a simple makefile to build the final .pyd.
240
241 build_ssl.py attempts to catch the most common errors (such as not
242 being able to find OpenSSL sources, or not being able to find a Perl
243 that works with OpenSSL) and give a reasonable error message.
244 If you have a problem that doesn't seem to be handled correctly
245 (eg, you know you have ActivePerl but we can't find it), please take
246 a peek at build_ssl.py and suggest patches. Note that build_ssl.py
247 should be able to be run directly from the command-line.
248
Tim Peterse8bcb252002-12-04 02:39:52 +0000249 build_ssl.py/MSVC isn't clever enough to clean OpenSSL - you must do
250 this by hand.
Tim Peters4b5fb072000-07-01 00:03:43 +0000251
Martin v. Löwis13e50fe2004-07-20 14:37:48 +0000252Building for Itanium
253--------------------
254
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000255NOTE:
256Official support for Itanium builds have been dropped from the build. Please
257contact as and provide patches if you are interested in Itanium builds.
258
Tim Peterse82b00f2004-08-30 21:14:51 +0000259The project files support a ReleaseItanium configuration which creates
Martin v. Löwis13e50fe2004-07-20 14:37:48 +0000260Win64/Itanium binaries. For this to work, you need to install the Platform
261SDK, in particular the 64-bit support. This includes an Itanium compiler
262(future releases of the SDK likely include an AMD64 compiler as well).
263In addition, you need the Visual Studio plugin for external C compilers,
264from http://sf.net/projects/vsextcomp. The plugin will wrap cl.exe, to
Tim Peterse82b00f2004-08-30 21:14:51 +0000265locate the proper target compiler, and convert compiler options
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000266accordingly. The project files require atleast version 0.9.
Martin v. Löwis13e50fe2004-07-20 14:37:48 +0000267
Martin v. Löwis856bf9a2006-02-14 20:42:55 +0000268Building for AMD64
269------------------
270
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000271The build process for AMD64 / x64 is very similar to standard builds. You just
272have to set x64 as platform.
Martin v. Löwis856bf9a2006-02-14 20:42:55 +0000273
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000274Building Python Using the free MS Toolkit Compiler
275--------------------------------------------------
276
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000277Microsoft has withdrawn the free MS Toolkit Compiler, so this can no longer
278be considered a supported option. Instead you can use the free VS C++ Express
279Edition.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000280
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000281Profile Guided Optimization
282---------------------------
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000283
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000284The solution has two configurations for PGO. The PGInstrument configuration
285must be build first. The PGInstrument binaries are lniked against a profiling
286library and contain extra debug information. The PGUpdate configuration takes the profiling data and generates optimized binaries.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000287
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000288The build_pgo.bat script automates the creation of optimized binaries. It
289creates the PGI files, runs the unit test suite or PyBench with the PGI
290python and finally creates the optimized files.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000291
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000292http://msdn2.microsoft.com/en-us/library/e7k32f4k(VS.90).aspx
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000293
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000294Static library
295--------------
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000296
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000297The solution has no configuration for static libraries. However it is easy
298it build a static library instead of a DLL. You simply have to set the
299"Configuration Type" to "Static Library (.lib)" and alter the preprocessor
300macro "Py_ENABLE_SHARED" to "Py_NO_ENABLE_SHARED". You may also have to
301change the "Runtime Library" from "Multi-threaded DLL (/MD)" to
302"Multi-threaded (/MT)".
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000303
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000304Visual Studio properties
305------------------------
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000306
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000307The PCbuild solution makes heavy use of Visual Studio property files
308(*.vsprops). The properties can be viewed and altered in the Property
309Manager (View -> Other Windows -> Property Manager).
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000310
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000311 * debug (debug macro: _DEBUG)
312 * pginstrument (PGO)
313 * pgupdate (PGO)
314 +-- pginstrument
315 * pyd (python extension, release build)
316 +-- release
317 +-- pyproject
318 * pyd_d (python extension, debug build)
319 +-- debug
320 +-- pyproject
321 * pyproject (base settings for all projects, user macros like PyDllName)
322 * release (release macro: NDEBUG)
323 * x64 (AMD64 / x64 platform specific settings)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000324
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000325The pyproject propertyfile defines _WIN32 and x64 defines _WIN64 and _M_X64
326although the macros are set by the compiler, too. The GUI doesn't always know
327about the macros and confuse the user with false information.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000328
Tim Petersf9a4a6e2000-07-01 20:38:27 +0000329YOUR OWN EXTENSION DLLs
Tim Peters4b5fb072000-07-01 00:03:43 +0000330-----------------------
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000331
Tim Peters4b5fb072000-07-01 00:03:43 +0000332If you want to create your own extension module DLL, there's an example
333with easy-to-follow instructions in ../PC/example/; read the file
334readme.txt there first.