diff options
author | davygrvy <davygrvy@pobox.com> | 2004-02-07 21:47:19 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@pobox.com> | 2004-02-07 21:47:19 (GMT) |
commit | 9a6ad6f7e1625a6ce47f8b383c6deab9f7d1a79a (patch) | |
tree | 71b132860f94c92cf4726d9431e969814ef41aec /win/tclsh.rc | |
parent | 33d37367eefd25c2373ed2d0e7d5d33aaf0c4546 (diff) | |
download | tcl-9a6ad6f7e1625a6ce47f8b383c6deab9f7d1a79a.zip tcl-9a6ad6f7e1625a6ce47f8b383c6deab9f7d1a79a.tar.gz tcl-9a6ad6f7e1625a6ce47f8b383c6deab9f7d1a79a.tar.bz2 |
* win/makefile.vc:
* win/rules.vc:
* win/tcl.rc:
* win/tclsh.rc: Added an 'unchecked' option to the OPTS macro so a
core build with symbols can be linked to the non-debug enabled C
run-time. As per discussion with Kevin Kenny. Called like this:
nmake -af makefile.vc OPTS=unchecked,symbols
This clarifies the meaning of the 'g' naming suffix to mean only that
the binary requires the debug enabled C run-time. Whether the binary
contains symbols or not is a seperate condition.
Diffstat (limited to 'win/tclsh.rc')
-rw-r--r-- | win/tclsh.rc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclsh.rc b/win/tclsh.rc index 01c9bd8..dd781da 100644 --- a/win/tclsh.rc +++ b/win/tclsh.rc @@ -1,4 +1,4 @@ -// RCS: @(#) $Id: tclsh.rc,v 1.10 2004/01/16 02:40:20 davygrvy Exp $ +// RCS: @(#) $Id: tclsh.rc,v 1.11 2004/02/07 21:47:19 davygrvy Exp $ // // Version Resource Script // @@ -21,7 +21,7 @@ #define SUFFIX_STATIC "" #endif -#if DEBUG +#if DEBUG && !UNCHECKED #define SUFFIX_DEBUG "g" #else #define SUFFIX_DEBUG "" |