Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Removed mention of Win32s. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | core-8-1-branch-old |
Files: | files | file ages | folders |
SHA1: |
248bb1b1f25a910b5e3a78576b6778a2 |
User & Date: | rjohnson 1999-03-25 00:31:22.000 |
Context
1999-03-25
| ||
00:34 | fixed compiler errors/warnings on VC++ 5.0/6.0 and HP-UX native compiler without -Aa or -Ae check-in: e1542205dd user: redman tags: core-8-1-branch-old | |
00:31 | Removed mention of Win32s. check-in: 248bb1b1f2 user: rjohnson tags: core-8-1-branch-old | |
1999-03-24
| ||
23:53 | - added code to print the name of each test file that created files and did not clean them up (the... check-in: 406483ed83 user: hershey tags: core-8-1-branch-old | |
Changes
Changes to win/README.
1 2 3 4 5 6 | Tcl 8.1 for Windows by Scott Stanton Scriptics Corporation [email protected] | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | Tcl 8.1 for Windows by Scott Stanton Scriptics Corporation [email protected] RCS: @(#) $Id: README,v 1.1.2.7 1999/03/25 00:31:22 rjohnson Exp $ 1. Introduction --------------- This is the directory where you configure and compile the Windows version of Tcl. This directory also contains source files for Tcl that are specific to Microsoft Windows. The rest of this file |
︙ | ︙ | |||
32 33 34 35 36 37 38 | 3. Compiling Tcl ---------------- In order to compile Tcl for Windows, you need the following items: Tcl 8.1 Source Distribution (plus any patches) | < < < < | < < < | | > > | 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | 3. Compiling Tcl ---------------- In order to compile Tcl for Windows, you need the following items: Tcl 8.1 Source Distribution (plus any patches) Visual C++ 2.x/4.x/5.x In practice, the 8.1.a2 release is built with Visual C++ 5.0 In the "win" subdirectory of the source release, you will find two files called "makefile.bc" and "makefile.vc". These are the makefiles for the Borland and Visual C++ compilers respectively. You should copy the appropriate one to "makefile" and update the paths at the top of the file to reflect your system configuration. Now you can use "make" (or "nmake" for VC++) to build the tcl libraries and the tclsh executable. In order to use the binaries generated by these makefiles, you will need to place the Tcl script library files someplace where Tcl can find them. Tcl looks in one of three places for the library files: 1) The path specified in the environment variable "TCL_LIBRARY". 2) In the lib\tcl8.1 directory under the installation directory as specified in the registry: HKEY_LOCAL_MACHINE\SOFTWARE\Scriptics\Tcl\8.1 3) Relative to the directory containing the current .exe. Tcl will look for a directory "..\lib\tcl8.1" relative to the directory containing the currently running .exe. Note that in order to run tclsh81.exe, you must ensure that tcl81.dll and tclpip81.dll are on your path, in the system directory, or in the directory containing tclsh81.exe. Note: Tcl no longer provides support for Win32s. 4. Building Extensions ---------------------- With the Windows compilers you have to worry about how you export symbols from DLLs. tcl.h defines a few macros to help solve this problem: EXTERN - all Tcl_ function prototypes use this macro, which implies |
︙ | ︙ |