[Python-checkins] CVS: python/dist/src/PCbuild readme.txt,1.13,1.14

Tim Peters tim_one@users.sourceforge.net
Thu, 18 Jan 2001 11:01:42 -0800


Update of /cvsroot/python/python/dist/src/PCbuild
In directory usw-pr-cvs1:/tmp/cvs-serv30313/python/dist/src/pcbuild

Modified Files:
	readme.txt 
Log Message:
Clarifications.


Index: readme.txt
===================================================================
RCS file: /cvsroot/python/python/dist/src/PCbuild/readme.txt,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -r1.13 -r1.14
*** readme.txt	2001/01/17 23:23:13	1.13
--- readme.txt	2001/01/18 19:01:39	1.14
***************
*** 5,21 ****
  (For other Windows platforms and compilers, see ../PC/readme.txt.)
  
- 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.
- 
  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.
  
! The proper order to build subprojects is:
  
  1) pythoncore (this builds the main Python DLL and library files,
!                python21.{dll, lib})
  
! 2) python   (this builds the main Python executable, python.exe)
  
  3) the other subprojects, as desired or needed (note:  you probably don't
--- 5,21 ----
  (For other Windows platforms and compilers, see ../PC/readme.txt.)
  
  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.
  
! The proper order to build subprojects:
  
  1) pythoncore (this builds the main Python DLL and library files,
!                python21.{dll, lib} in Release mode)
!               NOTE:  in previous releases, this subproject was
!               named after the release number, e.g. python20.
  
! 2) python (this builds the main Python executable,
!            python.exe in Release mode)
  
  3) the other subprojects, as desired or needed (note:  you probably don't
***************
*** 30,34 ****
  -----------
  These subprojects should build out of the box.  Subprojects other than the
! 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.
--- 30,34 ----
  -----------
  These subprojects should build out of the box.  Subprojects other than the
! main ones (pythoncore, 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.