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
|
|
|
XXX There are still (Python 2.0b1) a few compiler warnings under VC6.
|
|
|
|
XXX There are likely a few more under VC5.
|
|
|
|
|
|
|
|
Unlike older versions, there's no longer a need to copy the project files
|
|
|
|
from a subdirectory of PC/ to the PCbuild directory -- they come in PCbuild.
|
1998-05-26 11:16:23 -03:00
|
|
|
|
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
|
|
|
|
2000-06-30 21:03:43 -03:00
|
|
|
The proper order to build subprojects is:
|
1998-05-26 11:16:23 -03:00
|
|
|
|
2000-06-30 21:03:43 -03:00
|
|
|
1) python20 (this builds the main Python DLL and library files,
|
|
|
|
python20.{dll, lib})
|
1998-05-26 11:16:23 -03:00
|
|
|
|
2000-06-30 21:03:43 -03:00
|
|
|
2) python (this builds the main Python executable, python.exe)
|
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
|
2000-06-30 21:03:43 -03:00
|
|
|
their name: python20_d.dll, python_d.exe, parser_d.pyd, and so on.
|
|
|
|
|
|
|
|
SUBPROJECTS
|
|
|
|
-----------
|
2000-06-30 23:51:23 -03:00
|
|
|
These subprojects should build out of the box. Subprojects other than the
|
|
|
|
main ones (python20, python, pythonw) generally build a DLL (renamed to
|
|
|
|
.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.
|
|
|
|
|
|
|
|
python20
|
|
|
|
.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
|
|
|
|
mmap
|
|
|
|
mmapmodule.c
|
|
|
|
parser
|
|
|
|
the parser module
|
|
|
|
select
|
|
|
|
selectmodule.c
|
2000-07-01 00:46:38 -03:00
|
|
|
ucnhash, 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
|
2000-08-25 03:52:44 -03:00
|
|
|
Python wrapper for the Tk windowing system. Requires tcl832.exe from
|
2000-06-30 23:51:23 -03:00
|
|
|
http://dev.scriptics.com/software/tcltk/downloadnow83.html
|
2000-08-25 03:52:44 -03:00
|
|
|
Run the installer, forcing installation into dist\Tcl.
|
|
|
|
Be sure to install everything, including the Tcl/Tk header files.
|
2000-06-30 21:03:43 -03:00
|
|
|
|
|
|
|
zlib
|
|
|
|
Python wrapper for the zlib compression library. Requires
|
|
|
|
http://www.winimage.com/zLibDll/zlib133dll.zip
|
|
|
|
and
|
|
|
|
ftp://ftp.uu.net/graphics/png/src/zlib133.zip
|
2000-08-25 03:52:44 -03:00
|
|
|
Unpack the former into dist\zlib113dll.
|
|
|
|
Uppack the latter into dist\zlib113.
|
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).
|
2000-06-30 21:03:43 -03:00
|
|
|
|
|
|
|
pyexpat
|
|
|
|
Python wrapper for accelerated XML parsing. Requires
|
|
|
|
ftp://ftp.jclark.com/pub/xml/expat.zip
|
2000-08-25 03:52:44 -03:00
|
|
|
Unpack into dist\expat.
|
2000-06-30 21:03:43 -03:00
|
|
|
|
|
|
|
|
|
|
|
NOTE ON CONFIGURATIONS
|
|
|
|
----------------------
|
|
|
|
Under Build -> Configuration ..., you'll find several Alpha configurations,
|
|
|
|
such as "Win32 Alpha Release". These do not refer to alpha versions (as in
|
|
|
|
alpha, beta, final), but to the DEC/COMPAQ Alpha processor. Ignore them if
|
|
|
|
you're not building on an Alpha box.
|
1998-07-07 19:35:03 -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.
|