2004-01-02 17:13:28 -04:00
|
|
|
Building Python using VC++ 7.1
|
2000-03-28 21:51:37 -04:00
|
|
|
-------------------------------------
|
2000-06-30 21:03:43 -03:00
|
|
|
This directory is used to build Python for Win32 platforms, e.g. Windows
|
2004-01-02 17:13:28 -04:00
|
|
|
95, 98 and NT. It requires Microsoft Visual C++ 7.1
|
|
|
|
(a.k.a. Visual Studio .NET 2003).
|
1998-05-26 11:16:23 -03:00
|
|
|
(For other Windows platforms and compilers, see ../PC/readme.txt.)
|
2000-06-30 21:03:43 -03:00
|
|
|
|
2004-01-02 17:13:28 -04:00
|
|
|
All you need to do is open the workspace "pcbuild.sln" in MSVC++, select
|
|
|
|
the Debug or Release setting (using "Solution Configuration" from
|
|
|
|
the "Standard" toolbar"), and build the projects.
|
1998-05-26 11:16:23 -03:00
|
|
|
|
2001-01-18 15:01:39 -04:00
|
|
|
The proper order to build subprojects:
|
1998-05-26 11:16:23 -03:00
|
|
|
|
2001-01-17 19:23:13 -04:00
|
|
|
1) pythoncore (this builds the main Python DLL and library files,
|
2005-08-06 23:47:12 -03:00
|
|
|
python25.{dll, lib} in Release mode)
|
2001-01-18 15:01:39 -04:00
|
|
|
NOTE: in previous releases, this subproject was
|
|
|
|
named after the release number, e.g. python20.
|
1998-05-26 11:16:23 -03:00
|
|
|
|
2001-01-18 15:01:39 -04:00
|
|
|
2) python (this builds the main Python executable,
|
|
|
|
python.exe in Release mode)
|
1998-05-26 11:16:23 -03:00
|
|
|
|
2000-06-30 21:03:43 -03:00
|
|
|
3) the other subprojects, as desired or needed (note: you probably don't
|
|
|
|
want to build most of the other subprojects, unless you're building an
|
|
|
|
entire Python distribution from scratch, or specifically making changes
|
|
|
|
to the subsystems they implement; see SUBPROJECTS below)
|
1998-05-26 11:16:23 -03:00
|
|
|
|
|
|
|
When using the Debug setting, the output files have a _d added to
|
2005-08-06 23:47:12 -03:00
|
|
|
their name: python25_d.dll, python_d.exe, parser_d.pyd, and so on.
|
2000-06-30 21:03:43 -03:00
|
|
|
|
|
|
|
SUBPROJECTS
|
|
|
|
-----------
|
2000-06-30 23:51:23 -03:00
|
|
|
These subprojects should build out of the box. Subprojects other than the
|
2001-01-18 15:01:39 -04:00
|
|
|
main ones (pythoncore, python, pythonw) generally build a DLL (renamed to
|
2000-06-30 23:51:23 -03:00
|
|
|
.pyd) from a specific module so that users don't have to load the code
|
2000-06-30 21:03:43 -03:00
|
|
|
supporting that module unless they import the module.
|
|
|
|
|
2001-01-17 19:23:13 -04:00
|
|
|
pythoncore
|
2000-06-30 21:03:43 -03:00
|
|
|
.dll and .lib
|
|
|
|
python
|
|
|
|
.exe
|
|
|
|
pythonw
|
|
|
|
pythonw.exe, a variant of python.exe that doesn't pop up a DOS box
|
|
|
|
_socket
|
|
|
|
socketmodule.c
|
2001-02-03 23:09:53 -04:00
|
|
|
_testcapi
|
2001-02-02 17:24:51 -04:00
|
|
|
tests of the Python C API, run via Lib/test/test_capi.py, and
|
2001-02-03 23:09:53 -04:00
|
|
|
implemented by module Modules/_testcapimodule.c
|
2002-02-13 19:56:46 -04:00
|
|
|
pyexpat
|
|
|
|
Python wrapper for accelerated XML parsing, which incorporates stable
|
|
|
|
code from the Expat project: http://sourceforge.net/projects/expat/
|
2000-06-30 21:03:43 -03:00
|
|
|
select
|
|
|
|
selectmodule.c
|
2001-01-24 06:07:22 -04:00
|
|
|
unicodedata
|
2000-06-30 21:03:43 -03:00
|
|
|
large tables of Unicode data
|
|
|
|
winsound
|
|
|
|
play sounds (typically .wav files) under Windows
|
|
|
|
|
|
|
|
The following subprojects will generally NOT build out of the box. They
|
|
|
|
wrap code Python doesn't control, and you'll need to download the base
|
2000-08-25 03:52:44 -03:00
|
|
|
packages first and unpack them into siblings of PCbuilds's parent
|
|
|
|
directory; for example, if your PCbuild is .......\dist\src\PCbuild\,
|
|
|
|
unpack into new subdirectories of dist\.
|
2000-06-30 21:03:43 -03:00
|
|
|
|
|
|
|
_tkinter
|
2002-11-14 19:24:40 -04:00
|
|
|
Python wrapper for the Tk windowing system. Requires building
|
2004-08-30 06:22:04 -03:00
|
|
|
Tcl/Tk first. Following are instructions for Tcl/Tk 8.4.7; these
|
2004-03-20 17:00:26 -04:00
|
|
|
should work for version 8.4.6 too, with suitable substitutions:
|
2002-11-14 19:24:40 -04:00
|
|
|
|
|
|
|
Get source
|
|
|
|
----------
|
|
|
|
Go to
|
|
|
|
http://prdownloads.sourceforge.net/tcl/
|
|
|
|
and download
|
2004-08-30 06:22:04 -03:00
|
|
|
tcl847-src.zip
|
|
|
|
tk847-src.zip
|
2002-11-14 19:24:40 -04:00
|
|
|
Unzip into
|
2004-08-30 06:22:04 -03:00
|
|
|
dist\tcl8.4.7\
|
|
|
|
dist\tk8.4.7\
|
2002-11-14 19:24:40 -04:00
|
|
|
respectively.
|
|
|
|
|
2004-03-20 17:00:26 -04:00
|
|
|
Build Tcl first (done here w/ MSVC 7.1 on Windows XP)
|
2002-11-15 14:36:11 -04:00
|
|
|
---------------
|
2004-03-20 17:00:26 -04:00
|
|
|
Use "Start -> All Programs -> Microsoft Visual Studio .NET 2003
|
|
|
|
-> Visual Studio .NET Tools -> Visual Studio .NET 2003 Command Prompt"
|
|
|
|
to get a shell window with the correct environment settings
|
2004-08-30 06:22:04 -03:00
|
|
|
cd dist\tcl8.4.7\win
|
2002-11-14 19:24:40 -04:00
|
|
|
nmake -f makefile.vc
|
2004-08-30 06:22:04 -03:00
|
|
|
nmake -f makefile.vc INSTALLDIR=..\..\tcltk install
|
2002-11-14 19:24:40 -04:00
|
|
|
|
|
|
|
XXX Should we compile with OPTS=threads?
|
|
|
|
|
2004-04-11 14:29:12 -03:00
|
|
|
Optional: run tests, via
|
|
|
|
nmake -f makefile.vc test
|
|
|
|
|
2004-08-30 06:22:04 -03:00
|
|
|
On WinXP Pro, wholly up to date as of 30-Aug-2004:
|
2004-08-30 18:14:51 -03:00
|
|
|
all.tcl: Total 10678 Passed 9969 Skipped 709 Failed 0
|
2004-04-11 14:29:12 -03:00
|
|
|
Sourced 129 Test Files.
|
2002-11-14 19:24:40 -04:00
|
|
|
|
|
|
|
Build Tk
|
2002-11-15 14:36:11 -04:00
|
|
|
--------
|
2004-08-30 06:22:04 -03:00
|
|
|
cd dist\tk8.4.7\win
|
|
|
|
nmake -f makefile.vc TCLDIR=..\..\tcl8.4.7
|
|
|
|
nmake -f makefile.vc TCLDIR=..\..\tcl8.4.7 INSTALLDIR=..\..\tcltk install
|
2002-11-14 19:24:40 -04:00
|
|
|
|
|
|
|
XXX Should we compile with OPTS=threads?
|
|
|
|
|
|
|
|
XXX Our installer copies a lot of stuff out of the Tcl/Tk install
|
|
|
|
XXX directory. Is all of that really needed for Python use of Tcl/Tk?
|
|
|
|
|
2004-04-11 14:29:12 -03:00
|
|
|
Optional: run tests, via
|
2004-08-30 06:22:04 -03:00
|
|
|
nmake -f makefile.vc TCLDIR=..\..\tcl8.4.7 test
|
2002-11-19 13:38:27 -04:00
|
|
|
|
2004-08-30 06:22:04 -03:00
|
|
|
On WinXP Pro, wholly up to date as of 30-Aug-2004:
|
2004-08-30 18:14:51 -03:00
|
|
|
all.tcl: Total 8420 Passed 6826 Skipped 1581 Failed 13
|
2004-08-30 06:22:04 -03:00
|
|
|
Sourced 91 Test Files.
|
2004-08-30 18:14:51 -03:00
|
|
|
Files with failing tests: canvImg.test scrollbar.test textWind.test winWm.test
|
2005-08-06 23:47:12 -03:00
|
|
|
|
2004-08-31 13:22:09 -03:00
|
|
|
Built Tix
|
|
|
|
---------
|
|
|
|
Download from http://prdownloads.sourceforge.net/tix/tix-8.1.4.tar.gz
|
|
|
|
cd dist\tix-8.1.4
|
|
|
|
[cygwin]patch -p1 < ..\..\python\PC\tix.diff
|
|
|
|
cd win
|
|
|
|
nmake -f makefile.vc
|
|
|
|
nmake -f makefile.vc install
|
2000-06-30 21:03:43 -03:00
|
|
|
|
2002-11-09 00:48:58 -04:00
|
|
|
bz2
|
|
|
|
Python wrapper for the libbz2 compression library. Homepage
|
|
|
|
http://sources.redhat.com/bzip2/
|
|
|
|
Download the source tarball, bzip2-1.0.2.tar.gz.
|
2002-11-14 19:24:40 -04:00
|
|
|
Unpack into dist\bzip2-1.0.2. WARNING: If you're using WinZip, you
|
2002-11-09 00:48:58 -04:00
|
|
|
must disable its "TAR file smart CR/LF conversion" feature (under
|
|
|
|
Options -> Configuration -> Miscellaneous -> Other) for the duration.
|
2002-11-14 19:24:40 -04:00
|
|
|
|
2003-08-20 15:27:36 -03:00
|
|
|
A custom pre-link step in the bz2 project settings should manage to
|
|
|
|
build bzip2-1.0.2\libbz2.lib by magic before bz2.pyd (or bz2_d.pyd) is
|
|
|
|
linked in PCbuild\.
|
|
|
|
However, the bz2 project is not smart enough to remove anything under
|
|
|
|
bzip2-1.0.2\ when you do a clean, so if you want to rebuild bzip2.lib
|
|
|
|
you need to clean up bzip2-1.0.2\ by hand.
|
|
|
|
|
|
|
|
The build step shouldn't yield any warnings or errors, and should end
|
2002-11-09 00:48:58 -04:00
|
|
|
by displaying 6 blocks each terminated with
|
|
|
|
FC: no differences encountered
|
|
|
|
If FC finds differences, see the warning abou WinZip above (when I
|
|
|
|
first tried it, sample3.ref failed due to CRLF conversion).
|
2004-01-03 22:04:35 -04:00
|
|
|
|
2002-11-09 00:48:58 -04:00
|
|
|
All of this managed to build bzip2-1.0.2\libbz2.lib, which the Python
|
|
|
|
project links in.
|
|
|
|
|
|
|
|
|
2002-11-22 16:00:34 -04:00
|
|
|
_bsddb
|
2003-01-24 11:31:31 -04:00
|
|
|
Go to Sleepycat's download page:
|
|
|
|
http://www.sleepycat.com/download/
|
2002-11-22 16:00:34 -04:00
|
|
|
|
2004-01-06 00:04:01 -04:00
|
|
|
and download version 4.2.52.
|
2004-04-11 14:29:12 -03:00
|
|
|
|
|
|
|
With or without strong cryptography? You can choose either with or
|
|
|
|
without strong cryptography, as per the instructions below. By
|
2004-07-02 05:58:46 -03:00
|
|
|
default, Python is built and distributed WITHOUT strong crypto.
|
2004-04-11 14:29:12 -03:00
|
|
|
|
2004-01-06 00:04:01 -04:00
|
|
|
Unpack into the dist\. directory, ensuring you expand with folder names.
|
2004-04-11 14:29:12 -03:00
|
|
|
|
2004-01-06 00:04:01 -04:00
|
|
|
If you downloaded with strong crypto, this will create a dist\db-4.2.52
|
|
|
|
directory, and is ready to use.
|
2004-04-11 14:29:12 -03:00
|
|
|
|
|
|
|
If you downloaded WITHOUT strong crypto, this will create a
|
2004-01-06 00:04:01 -04:00
|
|
|
dist\db-4.2.52.NC directory - this directory should be renamed to
|
|
|
|
dist\db-4.2.52 before use.
|
2004-04-11 14:29:12 -03:00
|
|
|
|
2004-04-11 15:23:06 -03:00
|
|
|
As of 11-Apr-2004, you also need to download and manually apply two
|
|
|
|
patches before proceeding (and the sleepycat download page tells you
|
|
|
|
about this). Cygwin patch worked for me. cd to dist\db-4.2.52 and
|
|
|
|
use "patch -p0 < patchfile" once for each downloaded patchfile.
|
|
|
|
|
2003-01-24 11:31:31 -04:00
|
|
|
Open
|
2004-01-02 17:13:28 -04:00
|
|
|
dist\db-4.2.52\docs\index.html
|
2003-01-24 11:31:31 -04:00
|
|
|
|
2004-01-06 00:04:01 -04:00
|
|
|
and follow the "Windows->Building Berkeley DB with Visual C++ .NET"
|
|
|
|
instructions for building the Sleepycat
|
2003-01-24 11:31:31 -04:00
|
|
|
software. Note that Berkeley_DB.dsw is in the build_win32 subdirectory.
|
2004-03-20 17:00:26 -04:00
|
|
|
Build the "Release Static" version.
|
2003-01-24 11:31:31 -04:00
|
|
|
|
2004-03-20 17:00:26 -04:00
|
|
|
XXX We're linking against Release_static\libdb42s.lib.
|
2002-11-23 14:48:06 -04:00
|
|
|
XXX This yields the following warnings:
|
|
|
|
"""
|
|
|
|
Compiling...
|
|
|
|
_bsddb.c
|
|
|
|
Linking...
|
|
|
|
Creating library ./_bsddb.lib and object ./_bsddb.exp
|
2004-01-02 17:13:28 -04:00
|
|
|
_bsddb.obj : warning LNK4217: locally defined symbol _malloc imported in function __db_associateCallback
|
|
|
|
_bsddb.obj : warning LNK4217: locally defined symbol _free imported in function __DB_consume
|
|
|
|
_bsddb.obj : warning LNK4217: locally defined symbol _fclose imported in function _DB_verify
|
|
|
|
_bsddb.obj : warning LNK4217: locally defined symbol _fopen imported in function _DB_verify
|
|
|
|
_bsddb.obj : warning LNK4217: locally defined symbol _strncpy imported in function _init_pybsddb
|
|
|
|
__bsddb - 0 error(s), 5 warning(s)
|
2002-11-23 14:48:06 -04:00
|
|
|
"""
|
|
|
|
XXX This isn't encouraging, but I don't know what to do about it.
|
2002-11-22 16:00:34 -04:00
|
|
|
|
2003-01-24 11:31:31 -04:00
|
|
|
To run extensive tests, pass "-u bsddb" to regrtest.py. test_bsddb3.py
|
|
|
|
is then enabled. Running in verbose mode may be helpful.
|
|
|
|
|
|
|
|
XXX The test_bsddb3 tests don't always pass, on Windows (according to
|
2004-03-20 17:00:26 -04:00
|
|
|
XXX me) or on Linux (according to Barry). (I had much better luck
|
|
|
|
XXX on Win2K than on Win98SE.) The common failure mode across platforms
|
2003-01-24 11:31:31 -04:00
|
|
|
XXX is
|
|
|
|
XXX DBAgainError: (11, 'Resource temporarily unavailable -- unable
|
|
|
|
XXX to join the environment')
|
|
|
|
XXX
|
|
|
|
XXX and it appears timing-dependent. On Win2K I also saw this once:
|
|
|
|
XXX
|
|
|
|
XXX test02_SimpleLocks (bsddb.test.test_thread.HashSimpleThreaded) ...
|
|
|
|
XXX Exception in thread reader 1:
|
|
|
|
XXX Traceback (most recent call last):
|
|
|
|
XXX File "C:\Code\python\lib\threading.py", line 411, in __bootstrap
|
|
|
|
XXX self.run()
|
|
|
|
XXX File "C:\Code\python\lib\threading.py", line 399, in run
|
|
|
|
XXX apply(self.__target, self.__args, self.__kwargs)
|
|
|
|
XXX File "C:\Code\python\lib\bsddb\test\test_thread.py", line 268, in
|
|
|
|
XXX readerThread
|
|
|
|
XXX rec = c.next()
|
|
|
|
XXX DBLockDeadlockError: (-30996, 'DB_LOCK_DEADLOCK: Locker killed
|
|
|
|
XXX to resolve a deadlock')
|
2003-01-28 20:38:42 -04:00
|
|
|
XXX
|
|
|
|
XXX I'm told that DBLockDeadlockError is expected at times. It
|
|
|
|
XXX doesn't cause a test to fail when it happens (exceptions in
|
|
|
|
XXX threads are invisible to unittest).
|
2003-01-24 11:31:31 -04:00
|
|
|
|
2002-12-03 01:47:26 -04:00
|
|
|
_ssl
|
2002-12-03 22:39:52 -04:00
|
|
|
Python wrapper for the secure sockets library.
|
2000-06-30 21:03:43 -03:00
|
|
|
|
2002-12-03 01:47:26 -04:00
|
|
|
Get the latest source code for OpenSSL from
|
|
|
|
http://www.openssl.org
|
|
|
|
|
2002-12-03 22:39:52 -04:00
|
|
|
You (probably) don't want the "engine" code. For example, get
|
2004-04-11 15:23:06 -03:00
|
|
|
openssl-0.9.7d.tar.gz
|
2002-12-03 22:39:52 -04:00
|
|
|
not
|
2004-04-11 15:23:06 -03:00
|
|
|
openssl-engine-0.9.7d.tar.gz
|
2002-12-03 22:39:52 -04:00
|
|
|
|
2005-07-06 16:34:10 -03:00
|
|
|
(see #1233049 for using 0.9.8).
|
2002-12-03 01:47:26 -04:00
|
|
|
Unpack into the "dist" directory, retaining the folder name from
|
|
|
|
the archive - for example, the latest stable OpenSSL will install as
|
2004-07-02 05:58:46 -03:00
|
|
|
dist/openssl-0.9.7d
|
2002-12-03 01:47:26 -04:00
|
|
|
|
|
|
|
You can (theoretically) use any version of OpenSSL you like - the
|
|
|
|
build process will automatically select the latest version.
|
|
|
|
|
|
|
|
You must also install ActivePerl from
|
|
|
|
http://www.activestate.com/Products/ActivePerl/
|
2002-12-03 22:39:52 -04:00
|
|
|
as this is used by the OpenSSL build process. Complain to them <wink>.
|
2002-12-03 01:47:26 -04:00
|
|
|
|
|
|
|
The MSVC project simply invokes PCBuild/build_ssl.py to perform
|
2002-12-03 22:39:52 -04:00
|
|
|
the build. This Python script locates and builds your OpenSSL
|
2002-12-03 01:47:26 -04:00
|
|
|
installation, then invokes a simple makefile to build the final .pyd.
|
|
|
|
|
|
|
|
build_ssl.py attempts to catch the most common errors (such as not
|
|
|
|
being able to find OpenSSL sources, or not being able to find a Perl
|
|
|
|
that works with OpenSSL) and give a reasonable error message.
|
|
|
|
If you have a problem that doesn't seem to be handled correctly
|
|
|
|
(eg, you know you have ActivePerl but we can't find it), please take
|
|
|
|
a peek at build_ssl.py and suggest patches. Note that build_ssl.py
|
|
|
|
should be able to be run directly from the command-line.
|
|
|
|
|
2002-12-03 22:39:52 -04:00
|
|
|
build_ssl.py/MSVC isn't clever enough to clean OpenSSL - you must do
|
|
|
|
this by hand.
|
2000-06-30 21:03:43 -03:00
|
|
|
|
2004-07-20 11:37:48 -03:00
|
|
|
Building for Itanium
|
|
|
|
--------------------
|
|
|
|
|
2004-08-30 18:14:51 -03:00
|
|
|
The project files support a ReleaseItanium configuration which creates
|
2004-07-20 11:37:48 -03:00
|
|
|
Win64/Itanium binaries. For this to work, you need to install the Platform
|
|
|
|
SDK, in particular the 64-bit support. This includes an Itanium compiler
|
|
|
|
(future releases of the SDK likely include an AMD64 compiler as well).
|
|
|
|
In addition, you need the Visual Studio plugin for external C compilers,
|
|
|
|
from http://sf.net/projects/vsextcomp. The plugin will wrap cl.exe, to
|
2004-08-30 18:14:51 -03:00
|
|
|
locate the proper target compiler, and convert compiler options
|
2004-07-20 11:37:48 -03:00
|
|
|
accordingly.
|
|
|
|
|
|
|
|
The Itanium build has seen little testing. The SDK compiler reports a lot
|
|
|
|
of warnings about conversion from size_t to int, which will be fixed in
|
|
|
|
future Python releases.
|
2002-12-03 23:16:37 -04:00
|
|
|
|
2006-02-14 16:42:55 -04:00
|
|
|
Building for AMD64
|
|
|
|
------------------
|
|
|
|
|
|
|
|
The build process for the ReleaseAMD64 configuration is very similar
|
|
|
|
to the Itanium configuration; make sure you use the latest version of
|
|
|
|
vsextcomp.
|
|
|
|
|
2000-07-01 17:38:27 -03:00
|
|
|
YOUR OWN EXTENSION DLLs
|
2000-06-30 21:03:43 -03:00
|
|
|
-----------------------
|
|
|
|
If you want to create your own extension module DLL, there's an example
|
|
|
|
with easy-to-follow instructions in ../PC/example/; read the file
|
|
|
|
readme.txt there first.
|