summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorstanton <stanton>1999-01-06 21:08:50 (GMT)
committerstanton <stanton>1999-01-06 21:08:50 (GMT)
commitebe914ee21917bcea0864713fb1d2b3eade80686 (patch)
treea2f2efdbc635d80f21f222e0b00d31a2dad086fd /win
parent83b3538905ea600cb46f51d49dbeb69d2f6af310 (diff)
downloadtcl-ebe914ee21917bcea0864713fb1d2b3eade80686.zip
tcl-ebe914ee21917bcea0864713fb1d2b3eade80686.tar.gz
tcl-ebe914ee21917bcea0864713fb1d2b3eade80686.tar.bz2
* win/makefile.vc:
* generic/tcl.h: * generic/tclAlloc.c: Added USE_NATIVEMALLOC ifdefs to make it easier to compile for use with Purify.
Diffstat (limited to 'win')
-rw-r--r--win/makefile.vc16
1 files changed, 12 insertions, 4 deletions
diff --git a/win/makefile.vc b/win/makefile.vc
index 9d51847..366e49f 100644
--- a/win/makefile.vc
+++ b/win/makefile.vc
@@ -4,7 +4,7 @@
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# Copyright (c) 1995-1996 Sun Microsystems, Inc.
-# RCS: @(#) $Id: makefile.vc,v 1.21 1998/11/02 23:04:15 stanton Exp $
+# RCS: @(#) $Id: makefile.vc,v 1.22 1999/01/06 21:08:51 stanton Exp $
# Does not depend on the presence of any environment variables in
# order to compile tcl; all needed information is derived from
@@ -47,12 +47,20 @@ MACHINE = IX86
# Set NODEBUG to 0 to compile with symbols
NODEBUG = 1
-# uncomment one of the following lines to compile with TCL_MEM_DEBUG,
-# TCL_MEM_DEBUG, or TCL_COMPILE_DEBUG
+# The following defines can be used to control the amount of debugging
+# code that is added to the compilation.
+#
+# -DTCL_MEM_DEBUG Enables the debugging memory allocator.
+# -DTCL_COMPILE_DEBUG Enables byte compilation logging.
+# -DTCL_COMPILE_STATS Enables byte compilation statistics gathering.
+# -DUSE_NATIVEMALLOC Disables the Tcl memory allocator in favor
+# of the native malloc implementation. This is
+# needed when using Purify.
+#
#DEBUGDEFINES = -DTCL_MEM_DEBUG
#DEBUGDEFINES = -DTCL_MEM_DEBUG -DTCL_COMPILE_DEBUG
-#DEBUGDEFINES = -DTCL_MEM_DEBUG -DTCL_COMPILE_STATS
#DEBUGDEFINES = -DTCL_MEM_DEBUG -DTCL_COMPILE_DEBUG -DTCL_COMPILE_STATS
+#DEBUGDEFINES = -DUSE_NATIVEMALLOC
######################################################################
# Do not modify below this line