diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-01-17 23:23:13 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-01-17 23:23:13 (GMT) |
commit | 97c9640cc9ad2fc591fd1d9a7f75f74b15599a0e (patch) | |
tree | 77008903f9a4ef28cae03a710de92279618a52c8 /PCbuild/readme.txt | |
parent | 6425efe9aeb27fb698553b4cfcd925517052df72 (diff) | |
download | cpython-97c9640cc9ad2fc591fd1d9a7f75f74b15599a0e.zip cpython-97c9640cc9ad2fc591fd1d9a7f75f74b15599a0e.tar.gz cpython-97c9640cc9ad2fc591fd1d9a7f75f74b15599a0e.tar.bz2 |
Windows: 2.1a1 changes so Python runs again. Note that the python20
subproject is gone, replaced by the new pythoncore subproject.
Diffstat (limited to 'PCbuild/readme.txt')
-rw-r--r-- | PCbuild/readme.txt | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/PCbuild/readme.txt b/PCbuild/readme.txt index 7ff0139..0be0e3a 100644 --- a/PCbuild/readme.txt +++ b/PCbuild/readme.txt @@ -3,8 +3,6 @@ Building Python using VC++ 6.0 or 5.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.) -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. @@ -15,8 +13,8 @@ and build the projects. The proper order to build subprojects is: -1) python20 (this builds the main Python DLL and library files, - python20.{dll, lib}) +1) pythoncore (this builds the main Python DLL and library files, + python21.{dll, lib}) 2) python (this builds the main Python executable, python.exe) @@ -26,16 +24,16 @@ The proper order to build subprojects is: to the subsystems they implement; see SUBPROJECTS below) When using the Debug setting, the output files have a _d added to -their name: python20_d.dll, python_d.exe, parser_d.pyd, and so on. +their name: python21_d.dll, python_d.exe, parser_d.pyd, and so on. SUBPROJECTS ----------- These subprojects should build out of the box. Subprojects other than the -main ones (python20, python, pythonw) generally build a DLL (renamed to +main ones (python21, python, pythonw) generally build a DLL (renamed to .pyd) from a specific module so that users don't have to load the code supporting that module unless they import the module. -python20 +pythoncore .dll and .lib python .exe |