Guido van Rossum | 082d289 | 1997-05-16 16:24:09 +0000 | [diff] [blame] | 1 | Welcome to the "PC" subdirectory of the Python distribution!
|
| 2 | ************************************************************
|
| 3 |
|
| 4 |
|
| 5 | This "PC" subdirectory contains complete project files to make
|
| 6 | several PC ports of Python, as well as all the PC-specific
|
| 7 | Python source files. It should be located in the root of the
|
| 8 | Python distribution, and there should be directories "Modules",
|
| 9 | "Objects", "Python", etc. in the parent directory of this "PC"
|
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 10 | subdirectory. Be sure to read the documentation in the Python
|
| 11 | distribution.
|
Guido van Rossum | 082d289 | 1997-05-16 16:24:09 +0000 | [diff] [blame] | 12 |
|
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 13 | Python requires library files such as string.py to be available in
|
| 14 | one or more library directories. The search path of libraries is
|
| 15 | set up when Python starts. To see the current Python library search
|
| 16 | path, start Python and enter "import sys" and "print sys.path".
|
| 17 |
|
Guido van Rossum | 831c258 | 1997-08-14 22:57:33 +0000 | [diff] [blame] | 18 | All PC ports use this scheme to try to set up a module search path:
|
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 19 |
|
Guido van Rossum | 831c258 | 1997-08-14 22:57:33 +0000 | [diff] [blame] | 20 | 1) The script location; the current directory without script.
|
| 21 | 2) The PYTHONPATH variable, if set.
|
| 22 | 3) For Win32 platforms (NT/95), paths specified in the Registry.
|
| 23 | 4) Default directories lib, lib/win, lib/test, lib/tkinter;
|
| 24 | these are searched relative to the environment variable
|
| 25 | PYTHONHOME, if set, or relative to the executable and its
|
| 26 | ancestors, if a landmark file (Lib/string.py) is found ,
|
| 27 | or the current directory (not useful).
|
| 28 | 5) The directory containing the executable.
|
| 29 |
|
| 30 | The best installation strategy is to put the Python executable (and
|
| 31 | DLL, for Win32 platforms) in some convenient directory such as
|
| 32 | C:/python, and copy all library files and subdirectories (using XCOPY)
|
| 33 | to C:/python/lib. Then you don't need to set PYTHONPATH. Otherwise,
|
| 34 | set the environment variable PYTHONPATH to your Python search path.
|
| 35 | For example,
|
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 36 | set PYTHONPATH=.;d:\python\lib;d:\python\lib\win;d:\python\lib\dos_8x3
|
| 37 |
|
Guido van Rossum | 082d289 | 1997-05-16 16:24:09 +0000 | [diff] [blame] | 38 | There are several add-in modules to build Python programs which use
|
| 39 | the native Windows operating environment. The ports here just make
|
| 40 | "QuickWin" and DOS Python versions which support a character-mode
|
| 41 | (console) environment. Look in www.python.org for Tkinter, PythonWin,
|
| 42 | WPY and wxPython.
|
| 43 |
|
| 44 | To make a Python port, start the Integrated Development Environment
|
| 45 | (IDE) of your compiler, and read in the native "project file"
|
| 46 | (or makefile) provided. This will enable you to change any source
|
| 47 | files or build settings so you can make custom builds.
|
| 48 |
|
| 49 | config.h An important configuration file specific to PC's.
|
| 50 |
|
| 51 | config.c The list of C modules to include in the Python PC
|
| 52 | version. Manually edit this file to add or
|
| 53 | remove Python modules.
|
| 54 |
|
| 55 | testpy.py A Python test program. Run this to test your
|
Guido van Rossum | 831c258 | 1997-08-14 22:57:33 +0000 | [diff] [blame] | 56 | Python port. It should produce copious output,
|
| 57 | ending in a report on how many tests were OK, how many
|
| 58 | failed, and how many were skipped. Don't worry about
|
| 59 | skipped tests (these test unavailable optional features).
|
Guido van Rossum | 082d289 | 1997-05-16 16:24:09 +0000 | [diff] [blame] | 60 |
|
| 61 | src A subdirectory used only for VC++ version 1.5 Python
|
| 62 | source files. See below. The other compilers do not
|
| 63 | use it. They reference the actual distribution
|
| 64 | directories instead.
|
| 65 |
|
| 66 |
|
Guido van Rossum | e34b7de | 1997-05-19 20:01:57 +0000 | [diff] [blame] | 67 | Microsoft Visual C++ Version 4.x (32-bit Windows)
|
Guido van Rossum | 082d289 | 1997-05-16 16:24:09 +0000 | [diff] [blame] | 68 | =================================================
|
| 69 |
|
Guido van Rossum | e34b7de | 1997-05-19 20:01:57 +0000 | [diff] [blame] | 70 | (For historic reasons this uses the filename "vc40"; it has been tested
|
Guido van Rossum | 831c258 | 1997-08-14 22:57:33 +0000 | [diff] [blame] | 71 | most recently with VC 4.2. See below for VC 5.x.)
|
Guido van Rossum | 082d289 | 1997-05-16 16:24:09 +0000 | [diff] [blame] | 72 |
|
| 73 | The distributed Makefile is vc40.mak. This file is distributed with
|
| 74 | CRLF line separators, otherwise Developer Studio won't like it. It
|
| 75 | will NOT work from this PC directory. To use it, first copy it to the
|
| 76 | Python distribution directory, e.g. with this command:
|
| 77 | copy vc40.mak ..
|
| 78 | To convert the Makefile into a project file, start Developer Studio,
|
| 79 | choose Open Workspace, change the file name pattern to *.mak, find and
|
| 80 | select the file vc40.mak, and click OK. Developer Studio will create
|
| 81 | additional project files vc40.ncb and vc40.mdp when you use the
|
| 82 | project. The project contains six targets, which should be built in
|
| 83 | this order:
|
| 84 |
|
Guido van Rossum | e34b7de | 1997-05-19 20:01:57 +0000 | [diff] [blame] | 85 | python15 The Python core as a DLL, named python15.dll.
|
Guido van Rossum | 082d289 | 1997-05-16 16:24:09 +0000 | [diff] [blame] | 86 |
|
| 87 | python The Python main program, named python.exe. This should
|
| 88 | work as a console program under Windows 95 or NT, as well
|
| 89 | as under Windows 3.1(1) when using win32s. It uses
|
Guido van Rossum | e34b7de | 1997-05-19 20:01:57 +0000 | [diff] [blame] | 90 | python15.dll.
|
Guido van Rossum | 082d289 | 1997-05-16 16:24:09 +0000 | [diff] [blame] | 91 |
|
| 92 | _tkinter The optional _tkinter extension, _tkinter.dll; see below.
|
| 93 |
|
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 94 | All end products of the compilation are placed in the subdirectory
|
Guido van Rossum | 082d289 | 1997-05-16 16:24:09 +0000 | [diff] [blame] | 95 | vc40 (which Developer Studio creates); object files are placed in
|
| 96 | vc40/tmp. There are no separate Release and Debug project variants.
|
| 97 | Note that the python and _tkinter projects require that the
|
Guido van Rossum | e34b7de | 1997-05-19 20:01:57 +0000 | [diff] [blame] | 98 | python15.lib file exists in the vc40 subdirectory before they can be
|
Guido van Rossum | 082d289 | 1997-05-16 16:24:09 +0000 | [diff] [blame] | 99 | built.
|
| 100 |
|
| 101 | *** How to build the _tkinter extension ***
|
| 102 |
|
| 103 | This assumes that you have installed the Tcl/Tk binary distribution for
|
| 104 | Windows 95/NT with version numbers 7.5p1/4.1p1, in the default
|
| 105 | installation location (C:\tcl). (Ftp to ftp.sunlabs.com in /pub/tcl,
|
| 106 | file win41p1.exe.) You must also fetch and unpack the zip file
|
| 107 | vclibs41.zip which contains the files tcl75.lib and tk41.lib, and place
|
| 108 | those files in the PC subdirectory. In order to use _tkinter, the
|
| 109 | Tkinter.py module must be on PYTHONPATH. It is found in the
|
| 110 | Lib\tkinter subdirectory.
|
| 111 |
|
Guido van Rossum | 831c258 | 1997-08-14 22:57:33 +0000 | [diff] [blame] | 112 | Microsoft Visual C++ Version 5.x (Developer Studio)
|
| 113 | ===================================================
|
| 114 |
|
| 115 | For Visual C++ 5.x (Developer Studio) the instructions are somewhat
|
| 116 | different again. Three project files (*.dsp) and a workspace file
|
| 117 | (pcbuild.dsw) are provided in the subdirectory vc5x. (These are the
|
| 118 | same three subprojects as discussed for VC++ 4.x.)
|
| 119 |
|
Guido van Rossum | fd91056 | 1997-09-03 16:11:19 +0000 | [diff] [blame] | 120 | To use these, copy the files from vc5x to the toplevel PCbuild
|
| 121 | directory. Then open the pcbuild.dsw workspace file with Developer
|
| 122 | Studio. Select the Debug configuration (use Set Active
|
| 123 | Configuration... in the Build menu) and build the python15 and python
|
| 124 | projects (in that order). If you have Tcl/Tk 8.0 installed you can
|
| 125 | also try building the _tkinter project. If you plan to use the parser
|
| 126 | module, also build that project.
|
Guido van Rossum | 831c258 | 1997-08-14 22:57:33 +0000 | [diff] [blame] | 127 |
|
Guido van Rossum | 082d289 | 1997-05-16 16:24:09 +0000 | [diff] [blame] | 128 |
|
| 129 | Additional files and subdirectories for 32-bit Windows
|
| 130 | ======================================================
|
| 131 |
|
Guido van Rossum | e34b7de | 1997-05-19 20:01:57 +0000 | [diff] [blame] | 132 | python_nt.def Exports definition file for python15.dll.
|
Guido van Rossum | 082d289 | 1997-05-16 16:24:09 +0000 | [diff] [blame] | 133 |
|
Guido van Rossum | e34b7de | 1997-05-19 20:01:57 +0000 | [diff] [blame] | 134 | python_nt.rc Resource compiler input for python15.dll.
|
Guido van Rossum | 082d289 | 1997-05-16 16:24:09 +0000 | [diff] [blame] | 135 |
|
Guido van Rossum | 831c258 | 1997-08-14 22:57:33 +0000 | [diff] [blame] | 136 | dl_nt.c, import_nt.c
|
Guido van Rossum | 082d289 | 1997-05-16 16:24:09 +0000 | [diff] [blame] | 137 | Additional sources used for 32-bit Windows features.
|
| 138 |
|
Guido van Rossum | 831c258 | 1997-08-14 22:57:33 +0000 | [diff] [blame] | 139 | getpathp.c Default sys.path calculations (for all PC platforms).
|
Guido van Rossum | 082d289 | 1997-05-16 16:24:09 +0000 | [diff] [blame] | 140 |
|
| 141 | dllbase_nt.txt A (manually maintained) list of base addresses for
|
| 142 | various DLLs, to avoid run-time relocation.
|
| 143 |
|
| 144 | _tkinter.def The export definitions file for _tkinter.dll.
|
Guido van Rossum | 831c258 | 1997-08-14 22:57:33 +0000 | [diff] [blame] | 145 | (No longer needed; the /export:init_tkinter takes care
|
| 146 | of this.)
|
Guido van Rossum | 082d289 | 1997-05-16 16:24:09 +0000 | [diff] [blame] | 147 |
|
| 148 | make_nt.in Include file for nmake-based builds (unsupported).
|
| 149 |
|
| 150 | example_nt A subdirectory showing how to build an extension as a
|
| 151 | DLL.
|
| 152 |
|
| 153 | setup_nt A subdirectory containing an experimental installer
|
| 154 | using Python only.
|
| 155 |
|
| 156 |
|
| 157 | Microsoft Visual C++ Version 1.5 (16-bit Windows)
|
| 158 | =================================================
|
| 159 |
|
| 160 | Since VC++1.5 does not handle long file names, it is necessary
|
| 161 | to run the "makesrc.exe" program in this directory to copy
|
| 162 | Python files from the distribution to the directory "src"
|
| 163 | with shortened names. Included file names are shortened too.
|
| 164 | Do this before you attempt to build Python.
|
| 165 |
|
| 166 | The "makesrc.exe" program is a native NT program, and you must
|
| 167 | have NT, Windows 95 or Win32s to run it. Otherwise you will need
|
| 168 | to copy distribution files to src yourself.
|
| 169 |
|
| 170 | The makefiles are named *.mak and are located in directories
|
| 171 | starting with "vc15_". NOTE: When dependencies are scanned
|
| 172 | VC++ will create dependencies for directories which are not
|
| 173 | used because it fails to evaluate "#define" properly. You
|
| 174 | must manaully edit makefiles (*.mak) to remove references to
|
| 175 | "sys/" and other bad directories.
|
| 176 |
|
| 177 | vc15_lib A static Python library. Create this first because is
|
| 178 | is required for vc15_w31.
|
| 179 |
|
| 180 | vc15_w31 A Windows 3.1x Python QuickWin (console-mode)
|
| 181 | Python including sockets. Requires vc15_lib.
|
| 182 |
|
| 183 |
|
| 184 | Watcom C++ Version 10.6
|
| 185 | =======================
|
| 186 |
|
| 187 | The project file for the Watcom compiler is ./python.wpj.
|
| 188 | It will build Watcom versions in the directories wat_*.
|
| 189 |
|
| 190 | wat_dos A 32-bit extended DOS Python (console-mode) using the
|
| 191 | dos4gw DOS extender. Sockets are not included.
|
| 192 |
|
| 193 | wat_os2 A 32-bit OS/2 Python (console-mode).
|
| 194 | Sockets are not included.
|