Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 1 | Building Python using VC++ 6.0 or 5.0 |
| 2 | ------------------------------------- |
| 3 | This directory is used to build Python for Win32 platforms, e.g. Windows |
Hirokazu Yamamoto | eea8eda | 2008-08-14 01:33:44 +0000 | [diff] [blame] | 4 | 2000 and XP. It requires Microsoft Visual C++ 6.x or 5.x. |
Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 5 | (For other Windows platforms and compilers, see ../readme.txt.) |
| 6 | |
| 7 | All you need to do is open the workspace "pcbuild.dsw" in MSVC++, select |
| 8 | the Debug or Release setting (using Build -> Set Active Configuration...), |
| 9 | and build the projects. |
| 10 | |
| 11 | The proper order to build subprojects: |
| 12 | |
| 13 | 1) pythoncore (this builds the main Python DLL and library files, |
Hirokazu Yamamoto | eea8eda | 2008-08-14 01:33:44 +0000 | [diff] [blame] | 14 | python26.{dll, lib} in Release mode) |
Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 15 | |
| 16 | 2) python (this builds the main Python executable, |
| 17 | python.exe in Release mode) |
| 18 | |
| 19 | 3) the other subprojects, as desired or needed (note: you probably don't |
| 20 | want to build most of the other subprojects, unless you're building an |
| 21 | entire Python distribution from scratch, or specifically making changes |
| 22 | to the subsystems they implement; see SUBPROJECTS below) |
| 23 | |
| 24 | When using the Debug setting, the output files have a _d added to |
Hirokazu Yamamoto | eea8eda | 2008-08-14 01:33:44 +0000 | [diff] [blame] | 25 | their name: python26_d.dll, python_d.exe, pyexpat_d.pyd, and so on. |
Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 26 | |
| 27 | SUBPROJECTS |
| 28 | ----------- |
| 29 | These subprojects should build out of the box. Subprojects other than the |
| 30 | main ones (pythoncore, python, pythonw) generally build a DLL (renamed to |
| 31 | .pyd) from a specific module so that users don't have to load the code |
| 32 | supporting that module unless they import the module. |
| 33 | |
| 34 | pythoncore |
| 35 | .dll and .lib |
| 36 | python |
| 37 | .exe |
| 38 | pythonw |
| 39 | pythonw.exe, a variant of python.exe that doesn't pop up a DOS box |
Hirokazu Yamamoto | eea8eda | 2008-08-14 01:33:44 +0000 | [diff] [blame] | 40 | _msi |
| 41 | _msi.c. You need to install Windows Installer SDK to build this module. |
| 42 | http://www.microsoft.com/msdownload/platformsdk/sdkupdate/psdk-full.htm |
Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 43 | _socket |
| 44 | socketmodule.c |
Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 45 | _testcapi |
| 46 | tests of the Python C API, run via Lib/test/test_capi.py, and |
| 47 | implemented by module Modules/_testcapimodule.c |
Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 48 | pyexpat |
| 49 | Python wrapper for accelerated XML parsing, which incorporates stable |
| 50 | code from the Expat project: http://sourceforge.net/projects/expat/ |
| 51 | select |
| 52 | selectmodule.c |
| 53 | unicodedata |
| 54 | large tables of Unicode data |
Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 55 | winsound |
| 56 | play sounds (typically .wav files) under Windows |
| 57 | |
| 58 | The following subprojects will generally NOT build out of the box. They |
| 59 | wrap code Python doesn't control, and you'll need to download the base |
| 60 | packages first and unpack them into siblings of PCbuilds's parent |
| 61 | directory; for example, if your PCbuild is .......\dist\src\PCbuild\, |
| 62 | unpack into new subdirectories of dist\. |
| 63 | |
| 64 | _tkinter |
| 65 | Python wrapper for the Tk windowing system. Requires building |
Martin v. Löwis | 7addebf | 2006-10-17 15:18:06 +0000 | [diff] [blame] | 66 | Tcl/Tk first. Following are instructions for Tcl/Tk 8.4.12. |
Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 67 | |
| 68 | Get source |
| 69 | ---------- |
Martin v. Löwis | 7addebf | 2006-10-17 15:18:06 +0000 | [diff] [blame] | 70 | In the dist directory, run |
| 71 | svn export http://svn.python.org/projects/external/tcl8.4.12 |
| 72 | svn export http://svn.python.org/projects/external/tk8.4.12 |
| 73 | svn export http://svn.python.org/projects/external/tix-8.4.0 |
Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 74 | |
Martin v. Löwis | 7addebf | 2006-10-17 15:18:06 +0000 | [diff] [blame] | 75 | Build Tcl first (done here w/ MSVC 6 on Win2K) |
Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 76 | --------------- |
Martin v. Löwis | 7addebf | 2006-10-17 15:18:06 +0000 | [diff] [blame] | 77 | cd dist\tcl8.4.12\win |
| 78 | run vcvars32.bat |
Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 79 | nmake -f makefile.vc |
Martin v. Löwis | 7addebf | 2006-10-17 15:18:06 +0000 | [diff] [blame] | 80 | nmake -f makefile.vc INSTALLDIR=..\..\tcltk install |
Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 81 | |
| 82 | XXX Should we compile with OPTS=threads? |
| 83 | |
Martin v. Löwis | 7addebf | 2006-10-17 15:18:06 +0000 | [diff] [blame] | 84 | Optional: run tests, via |
| 85 | nmake -f makefile.vc test |
| 86 | |
| 87 | all.tcl: Total 10835 Passed 10096 Skipped 732 Failed 7 |
| 88 | Sourced 129 Test Files. |
| 89 | Files with failing tests: exec.test expr.test io.test main.test string.test stri |
| 90 | ngObj.test |
Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 91 | |
| 92 | Build Tk |
| 93 | -------- |
Martin v. Löwis | 7addebf | 2006-10-17 15:18:06 +0000 | [diff] [blame] | 94 | cd dist\tk8.4.12\win |
| 95 | nmake -f makefile.vc TCLDIR=..\..\tcl8.4.12 |
| 96 | nmake -f makefile.vc TCLDIR=..\..\tcl8.4.12 INSTALLDIR=..\..\tcltk install |
Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 97 | |
| 98 | XXX Should we compile with OPTS=threads? |
| 99 | |
| 100 | XXX I have no idea whether "nmake -f makefile.vc test" passed or |
| 101 | XXX failed. It popped up tons of little windows, and did lots of |
| 102 | XXX stuff, and nothing blew up. |
| 103 | |
Martin v. Löwis | 7addebf | 2006-10-17 15:18:06 +0000 | [diff] [blame] | 104 | Built Tix |
| 105 | --------- |
| 106 | cd dist\tix-8.4.0\win |
| 107 | nmake -f python.mak |
| 108 | nmake -f python.mak install |
Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 109 | |
| 110 | bz2 |
| 111 | Python wrapper for the libbz2 compression library. Homepage |
Hirokazu Yamamoto | 195ccc1 | 2009-01-09 03:56:58 +0000 | [diff] [blame] | 112 | http://www.bzip.org/ |
Martin v. Löwis | 7addebf | 2006-10-17 15:18:06 +0000 | [diff] [blame] | 113 | Download the source from the python.org copy into the dist |
| 114 | directory: |
Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 115 | |
Hirokazu Yamamoto | 195ccc1 | 2009-01-09 03:56:58 +0000 | [diff] [blame] | 116 | svn export http://svn.python.org/projects/external/bzip2-1.0.5 |
Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 117 | |
Martin v. Löwis | 7addebf | 2006-10-17 15:18:06 +0000 | [diff] [blame] | 118 | And requires building bz2 first. |
Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 119 | |
Hirokazu Yamamoto | 195ccc1 | 2009-01-09 03:56:58 +0000 | [diff] [blame] | 120 | cd dist\bzip2-1.0.5 |
Martin v. Löwis | 7addebf | 2006-10-17 15:18:06 +0000 | [diff] [blame] | 121 | nmake -f makefile.msc |
| 122 | |
Hirokazu Yamamoto | 195ccc1 | 2009-01-09 03:56:58 +0000 | [diff] [blame] | 123 | All of this managed to build bzip2-1.0.5\libbz2.lib, which the Python |
Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 124 | project links in. |
| 125 | |
| 126 | |
| 127 | _bsddb |
Martin v. Löwis | 7addebf | 2006-10-17 15:18:06 +0000 | [diff] [blame] | 128 | To use the version of bsddb that Python is built with by default, invoke |
| 129 | (in the dist directory) |
Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 130 | |
Hirokazu Yamamoto | f8956b6 | 2009-01-09 04:14:13 +0000 | [diff] [blame^] | 131 | svn export http://svn.python.org/projects/external/db-4.7.25.0 db-4.7.25 |
Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 132 | |
Hirokazu Yamamoto | f8956b6 | 2009-01-09 04:14:13 +0000 | [diff] [blame^] | 133 | Then open db-4.7.25\build_windows\Berkeley_DB.dsw and build the |
| 134 | "db_static" project for "Release" mode. |
Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 135 | |
Martin v. Löwis | 7addebf | 2006-10-17 15:18:06 +0000 | [diff] [blame] | 136 | Alternatively, if you want to start with the original sources, |
Hirokazu Yamamoto | f8956b6 | 2009-01-09 04:14:13 +0000 | [diff] [blame^] | 137 | go to Oracle's download page: |
| 138 | http://www.oracle.com/technology/software/products/berkeley-db/db/ |
Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 139 | |
Hirokazu Yamamoto | f8956b6 | 2009-01-09 04:14:13 +0000 | [diff] [blame^] | 140 | and download version 4.7.25. |
Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 141 | |
Martin v. Löwis | 7addebf | 2006-10-17 15:18:06 +0000 | [diff] [blame] | 142 | With or without strong cryptography? You can choose either with or |
| 143 | without strong cryptography, as per the instructions below. By |
| 144 | default, Python is built and distributed WITHOUT strong crypto. |
Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 145 | |
Martin v. Löwis | 7addebf | 2006-10-17 15:18:06 +0000 | [diff] [blame] | 146 | Unpack the sources; if you downloaded the non-crypto version, rename |
Hirokazu Yamamoto | f8956b6 | 2009-01-09 04:14:13 +0000 | [diff] [blame^] | 147 | the directory from db-4.7.25.NC to db-4.7.25. |
Martin v. Löwis | 7addebf | 2006-10-17 15:18:06 +0000 | [diff] [blame] | 148 | |
| 149 | Now apply any patches that apply to your version. |
Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 150 | |
| 151 | To run extensive tests, pass "-u bsddb" to regrtest.py. test_bsddb3.py |
| 152 | is then enabled. Running in verbose mode may be helpful. |
| 153 | |
| 154 | XXX The test_bsddb3 tests don't always pass, on Windows (according to |
Martin v. Löwis | 7addebf | 2006-10-17 15:18:06 +0000 | [diff] [blame] | 155 | XXX me) or on Linux (according to Barry). (I had much better luck |
| 156 | XXX on Win2K than on Win98SE.) The common failure mode across platforms |
Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 157 | XXX is |
| 158 | XXX DBAgainError: (11, 'Resource temporarily unavailable -- unable |
| 159 | XXX to join the environment') |
| 160 | XXX |
| 161 | XXX and it appears timing-dependent. On Win2K I also saw this once: |
| 162 | XXX |
| 163 | XXX test02_SimpleLocks (bsddb.test.test_thread.HashSimpleThreaded) ... |
| 164 | XXX Exception in thread reader 1: |
| 165 | XXX Traceback (most recent call last): |
| 166 | XXX File "C:\Code\python\lib\threading.py", line 411, in __bootstrap |
| 167 | XXX self.run() |
| 168 | XXX File "C:\Code\python\lib\threading.py", line 399, in run |
| 169 | XXX apply(self.__target, self.__args, self.__kwargs) |
| 170 | XXX File "C:\Code\python\lib\bsddb\test\test_thread.py", line 268, in |
| 171 | XXX readerThread |
| 172 | XXX rec = c.next() |
| 173 | XXX DBLockDeadlockError: (-30996, 'DB_LOCK_DEADLOCK: Locker killed |
| 174 | XXX to resolve a deadlock') |
| 175 | XXX |
| 176 | XXX I'm told that DBLockDeadlockError is expected at times. It |
| 177 | XXX doesn't cause a test to fail when it happens (exceptions in |
| 178 | XXX threads are invisible to unittest). |
| 179 | |
| 180 | |
Hirokazu Yamamoto | eea8eda | 2008-08-14 01:33:44 +0000 | [diff] [blame] | 181 | _sqlite3 |
| 182 | Python wrapper for SQLite library. |
| 183 | |
| 184 | Get the source code through |
| 185 | |
| 186 | svn export http://svn.python.org/projects/external/sqlite-source-3.3.4 |
| 187 | |
| 188 | To use the extension module in a Python build tree, copy sqlite3.dll into |
| 189 | the PC/VC6 folder. |
| 190 | |
| 191 | |
Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 192 | _ssl |
| 193 | Python wrapper for the secure sockets library. |
| 194 | |
| 195 | Get the latest source code for OpenSSL from |
| 196 | http://www.openssl.org |
| 197 | |
| 198 | You (probably) don't want the "engine" code. For example, get |
| 199 | openssl-0.9.6g.tar.gz |
| 200 | not |
| 201 | openssl-engine-0.9.6g.tar.gz |
| 202 | |
| 203 | Unpack into the "dist" directory, retaining the folder name from |
| 204 | the archive - for example, the latest stable OpenSSL will install as |
| 205 | dist/openssl-0.9.6g |
| 206 | |
| 207 | You can (theoretically) use any version of OpenSSL you like - the |
| 208 | build process will automatically select the latest version. |
| 209 | |
| 210 | You must also install ActivePerl from |
| 211 | http://www.activestate.com/Products/ActivePerl/ |
| 212 | as this is used by the OpenSSL build process. Complain to them <wink>. |
| 213 | |
Hirokazu Yamamoto | eea8eda | 2008-08-14 01:33:44 +0000 | [diff] [blame] | 214 | The MSVC project simply invokes PC/VC6/build_ssl.py to perform |
Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 215 | the build. This Python script locates and builds your OpenSSL |
| 216 | installation, then invokes a simple makefile to build the final .pyd. |
| 217 | |
Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 218 | build_ssl.py attempts to catch the most common errors (such as not |
| 219 | being able to find OpenSSL sources, or not being able to find a Perl |
| 220 | that works with OpenSSL) and give a reasonable error message. |
| 221 | If you have a problem that doesn't seem to be handled correctly |
| 222 | (eg, you know you have ActivePerl but we can't find it), please take |
| 223 | a peek at build_ssl.py and suggest patches. Note that build_ssl.py |
| 224 | should be able to be run directly from the command-line. |
| 225 | |
| 226 | build_ssl.py/MSVC isn't clever enough to clean OpenSSL - you must do |
| 227 | this by hand. |
| 228 | |
Tim Peters | ff8505d | 2004-01-03 05:45:59 +0000 | [diff] [blame] | 229 | |
| 230 | YOUR OWN EXTENSION DLLs |
| 231 | ----------------------- |
| 232 | If you want to create your own extension module DLL, there's an example |
| 233 | with easy-to-follow instructions in ../PC/example/; read the file |
| 234 | readme.txt there first. |