diff options
author | hobbs <hobbs> | 2002-10-10 04:56:21 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2002-10-10 04:56:21 (GMT) |
commit | 6d39e6c0d49b215bea549efde077c593f53b28ea (patch) | |
tree | ff90a224e18edb445545b313dd28ffed67c2cc49 /unix/README | |
parent | 3cb21be3557aec892643f059671997558259e741 (diff) | |
download | tcl-6d39e6c0d49b215bea549efde077c593f53b28ea.zip tcl-6d39e6c0d49b215bea549efde077c593f53b28ea.tar.gz tcl-6d39e6c0d49b215bea549efde077c593f53b28ea.tar.bz2 |
* unix/README: doc'ed --enable-symbols options.
* unix/Makefile.in: removed @MEM_DEBUG_FLAGS@ subst.
* unix/configure: regen
* unix/configure.in: removed SC_ENABLE_MEMDEBUG call
* unix/tcl.m4: replaced SC_ENABLE_MEMDEBUG with a more intelligent
SC_ENABLE_SYMBOLS that takes yes|no|mem|compile|all as options now.
Diffstat (limited to 'unix/README')
-rw-r--r-- | unix/README | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/unix/README b/unix/README index 721ae24..d5607f6 100644 --- a/unix/README +++ b/unix/README @@ -1,7 +1,7 @@ Tcl UNIX README --------------- -RCS: @(#) $Id: README,v 1.23 2002/09/11 03:19:18 mdejong Exp $ +RCS: @(#) $Id: README,v 1.24 2002/10/10 04:56:21 hobbs Exp $ This is the directory where you configure, compile, test, and install UNIX versions of Tcl. This directory also contains source files for Tcl @@ -62,7 +62,12 @@ How To Compile And Install Tcl: how to build shared libraries. --disable-shared If this switch is specified, Tcl will compile itself as a static library. - --enable-symbols build with debugging symbols + --enable-symbols build with debugging symbols. By default + standard debugging symbols are used. You + can specify the value "mem" to include + TCL_MEM_DEBUG memory debugging, "compile" + to include TCL_COMPILE_DEBUG debugging, or + "all" to enable all internal debugging. --disable-symbols build without debugging symbols --enable-64bit enable 64bit support (where applicable) --disable-64bit disable 64bit support (where applicable) |