cpython/PCbuild
2000-06-30 20:30:03 +00:00
..
.cvsignore Changes by Mark Hammond to ignore more by-products of the build. 2000-04-24 13:32:05 +00:00
_socket.dsp Mark Hammond: 2000-04-21 21:26:08 +00:00
_sre.dsp Mark Hammond: 2000-04-21 21:26:08 +00:00
_tkinter.dsp Change the include etc paths to Tcl 8.3.1. 2000-06-30 14:33:47 +00:00
bsddb.dsp Mark Hammond: 2000-04-21 21:26:08 +00:00
mmap.dsp Oops -- Mark forgot to add "0x" to the /base: argument. 2000-04-24 14:17:17 +00:00
parser.dsp Mark Hammond: 2000-04-21 21:26:08 +00:00
pcbuild.dsw More 2.0 stuff -- fix workspace, remove 1.6 files 2000-06-30 14:04:10 +00:00
pyexpat.dsp Mark Hammond: 2000-04-21 21:26:08 +00:00
python.dsp Mark Hammond: 2000-04-21 21:26:08 +00:00
python20.dsp Add back a missing CRLF line ending. 2000-06-30 20:30:03 +00:00
python20.wse Oops. 2000-06-30 14:55:26 +00:00
pythonw.dsp Mark Hammond: 2000-04-21 21:26:08 +00:00
readme.txt Making a tiny change to figure out what I'm going to screw up 2000-06-30 09:04:35 +00:00
select.dsp Mark Hammond: 2000-04-21 21:26:08 +00:00
ucnhash.dsp Marc-Andre Lemburg <mal@lemburg.com>: 2000-06-28 16:40:10 +00:00
unicodedata.dsp Mark Hammond: 2000-04-21 21:26:08 +00:00
winreg.dsp Finish converting the winreg extension to _winreg. 2000-06-29 16:43:49 +00:00
winsound.dsp Added winsound project to workspace, and added -I options to winsound 2000-04-21 21:43:40 +00:00
zlib.dsp The debug settings for zlib contained a bogus reference to msvcrt in 2000-05-02 12:44:22 +00:00

Building Python using VC++ 5.0 or 6.0
-------------------------------------

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.
(For other Windows platforms and compilers, see ../PC/readme.txt.)

Unlike previous versions, there's no longer a need to copy the project
files from the PC/vc5x subdirectory to the PCbuild directory -- they
come in PCbuild.

All you need to do is open the workspace "pcbuild.dsw" in MSVC++,
select the Debug or Release setting (using Set Active
Configuration... in the Build menu), and build the projects.

The proper order to build is

1) python16 (this builds python16.dll and python16.lib)
2) python   (this builds python.exe)
3) the other subprojects

Some subprojects require that you have distributions of other
software: Tcl/Tk, bsddb and zlib.  If you don't have these, you can't
build the corresponding extensions.  If you do have them, you may have
to change the project settings to point to the right include files,
libraries etc.

When using the Debug setting, the output files have a _d added to
their name: python16_d.dll, python_d.exe, parser_d.pyd, and so on.

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.

Pointers:
Python	http://www.python.org
Tcl/Tk	http://dev.scriptics.com
zlib	http://www.winimage.com/zLibDll
bsddb	Sam Rushing's web/ftp site