2000-06-30 21:03:43 -03:00
|
|
|
Building Python using VC++ 6.0 or 5.0
|
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
|
|
|
|
95, 98 and NT. It requires Microsoft Visual C++ 6.x or 5.x.
|
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
|
|
|
|
|
|
|
All you need to do is open the workspace "pcbuild.dsw" in MSVC++, select
|
|
|
|
the Debug or Release setting (using Build -> Set Active Configuration...),
|
|
|
|
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,
|
2001-01-18 15:01:39 -04:00
|
|
|
python21.{dll, lib} in Release mode)
|
|
|
|
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
|
2001-01-17 19:23:13 -04:00
|
|
|
their name: python21_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
|
|
|
|
_sre
|
|
|
|
Unicode-aware regular expression engine
|
2001-02-02 17:24:51 -04:00
|
|
|
_symtable
|
|
|
|
the _symtable module, symtablemodule.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
|
2000-06-30 21:03:43 -03:00
|
|
|
mmap
|
|
|
|
mmapmodule.c
|
|
|
|
parser
|
|
|
|
the parser module
|
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
|
|
|
|
winreg
|
|
|
|
Windows registry API
|
|
|
|
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
|
|
|
|
Tcl/Tk first. Following are instructions for Tcl/Tk 8.4.1:
|
|
|
|
|
|
|
|
Get source
|
|
|
|
----------
|
|
|
|
Go to
|
|
|
|
http://prdownloads.sourceforge.net/tcl/
|
|
|
|
and download
|
|
|
|
tcl841-src.zip
|
|
|
|
tk841-src.zip
|
|
|
|
Unzip into
|
|
|
|
dist\tcl8.4.1\
|
|
|
|
dist\tk\8.4.1\
|
|
|
|
respectively.
|
|
|
|
|
|
|
|
Build Tcl first (done here w/ MSVC 6 on Win2K)
|
|
|
|
----------------------------------------------
|
|
|
|
cd dist\tcl8.4.1\win
|
|
|
|
run vcvars32.bat [necessary even on Win2K]
|
|
|
|
nmake -f makefile.vc
|
|
|
|
nmake -f makefile.vc INSTALLDIR=..\..\tcl84 install
|
|
|
|
|
|
|
|
XXX Should we compile with OPTS=threads?
|
|
|
|
|
|
|
|
XXX Some tests failed in "nmake -f makefile.vc test".
|
|
|
|
|
|
|
|
XXX Should rename destination directory to something more generic
|
|
|
|
XXX then tcl84. But unless I can backport 8.3.4 to the 2.2 line
|
|
|
|
XXX too, I've got to be able to build using more than oneX Tcl/Tk
|
|
|
|
XXX release, and that effectively reserves the "tcl" directory name
|
|
|
|
XXX for the duration. Nothing that requires thought is going to
|
|
|
|
XXX work when it comes to release crunch times.
|
|
|
|
|
|
|
|
|
|
|
|
Build Tk
|
|
|
|
-------
|
|
|
|
cd dist\tk8.4.1\win
|
|
|
|
nmake -f makefile.vc TCLDIR=..\..\tcl8.4.1
|
|
|
|
nmake -f makefile.vc TCLDIR=..\..\tcl8.4.1 INSTALLDIR=..\..\tcl84 install
|
|
|
|
|
|
|
|
XXX Should we compile with OPTS=threads?
|
|
|
|
|
|
|
|
XXX Some tests failed in "nmake -f makefile.vc test".
|
|
|
|
|
|
|
|
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?
|
|
|
|
|
2000-06-30 21:03:43 -03:00
|
|
|
|
|
|
|
zlib
|
2001-01-31 15:39:44 -04:00
|
|
|
Python wrapper for the zlib compression library. Get the source code
|
2002-03-13 17:51:55 -04:00
|
|
|
for version 1.1.4 from a convenient mirror at:
|
|
|
|
http://www.gzip.org/zlib/
|
|
|
|
Unpack into dist\zlib-1.1.4.
|
2001-01-31 15:39:44 -04:00
|
|
|
A custom pre-link step in the zlib project settings should manage to
|
2002-03-13 17:51:55 -04:00
|
|
|
build zlib-1.1.4\zlib.lib by magic before zlib.pyd (or zlib_d.pyd) is
|
2001-01-31 15:39:44 -04:00
|
|
|
linked in PCbuild\.
|
|
|
|
However, the zlib project is not smart enough to remove anything under
|
2002-03-13 17:51:55 -04:00
|
|
|
zlib-1.1.4\ when you do a clean, so if you want to rebuild zlib.lib
|
|
|
|
you need to clean up zlib-1.1.4\ by hand.
|
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
|
|
|
|
2002-11-09 00:48:58 -04:00
|
|
|
Don't bother trying to use libbz2.dsp with MSVC. After 10 minutes
|
|
|
|
of fiddling, I couldn't get it to work. Perhaps it works with
|
|
|
|
MSVC 5 (I used MSVC 6). It's better to run the by-hand makefile
|
2002-11-14 19:24:40 -04:00
|
|
|
anyway, because it runs a helpful test step at the end.
|
|
|
|
|
2002-11-09 00:48:58 -04:00
|
|
|
cd into dist\bzip2-1.0.2, and run
|
|
|
|
nmake -f makefile.msc
|
|
|
|
[Note that if you're running Win9X, you'll need to run vcvars32.bat
|
|
|
|
before running nmake (this batch file is in your MSVC installation).
|
|
|
|
TODO: make this work like zlib (in particular, MSVC runs the prelink
|
|
|
|
step in an enviroment that already has the correct envars set up).
|
|
|
|
]
|
2002-11-14 19:24:40 -04:00
|
|
|
The make 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).
|
2002-11-14 19:24:40 -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.
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-06-30 21:03:43 -03:00
|
|
|
bsddb
|
2000-06-30 23:51:23 -03:00
|
|
|
Python wrapper for the BSD database 1.85. Requires db.1.85.win32.zip,
|
|
|
|
from the "bsd db" link at
|
2000-06-30 21:03:43 -03:00
|
|
|
http://www.nightmare.com/software.html
|
2000-08-25 03:52:44 -03:00
|
|
|
Unpack into dist\bsddb.
|
|
|
|
You then need to compile it: cd to dist\bsddb\Port\win32, and run
|
|
|
|
nmake -f makefile_nt.msc
|
|
|
|
This builds bsddb\Port\win32\db.lib, which the MSVC project links in.
|
|
|
|
Note that if you're running Win9X, you'll need to run vcvars32.bat
|
|
|
|
before running nmake (this batch file is in your MSVC installation).
|
2001-02-01 01:10:02 -04:00
|
|
|
TODO: make this work like zlib (in particular, MSVC runs the prelink
|
|
|
|
step in an enviroment that already has the correct envars set up).
|
2000-06-30 21:03:43 -03:00
|
|
|
|
|
|
|
|
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.
|