diff options
author | hobbs <hobbs> | 2002-04-12 06:35:05 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2002-04-12 06:35:05 (GMT) |
commit | 362a547eb298a9b720b25c7fb7c30e126a977d28 (patch) | |
tree | 1ebc75e4e700c5c34d13d9d92f63695d9ff88ab2 | |
parent | 70b4cf33bf908d93140b250ae357db1b2ce8f135 (diff) | |
download | tk-362a547eb298a9b720b25c7fb7c30e126a977d28.zip tk-362a547eb298a9b720b25c7fb7c30e126a977d28.tar.gz tk-362a547eb298a9b720b25c7fb7c30e126a977d28.tar.bz2 |
* win/configure:
* win/tcl.m4: Enabled COFF as well as CV style debug info with
--enable-symbols to allow Dr. Watson users to see function info.
More info on debugging levels can be obtained at:
http://msdn.microsoft.com/library/en-us/dnvc60/html/gendepdebug.asp
-rw-r--r-- | ChangeLog | 8 | ||||
-rwxr-xr-x | win/configure | 2 | ||||
-rw-r--r-- | win/tcl.m4 | 2 |
3 files changed, 10 insertions, 2 deletions
@@ -1,3 +1,11 @@ +2002-04-11 Jeff Hobbs <jeffh@ActiveState.com> + + * win/configure: + * win/tcl.m4: Enabled COFF as well as CV style debug info with + --enable-symbols to allow Dr. Watson users to see function info. + More info on debugging levels can be obtained at: + http://msdn.microsoft.com/library/en-us/dnvc60/html/gendepdebug.asp + 2002-04-10 David Gravereaux <davygrvy@pobox.com> * win/makefile.vc: Added missing $(TKSTUBLIB) to the diff --git a/win/configure b/win/configure index 1748239..9270ce1 100755 --- a/win/configure +++ b/win/configure @@ -1762,7 +1762,7 @@ echo "configure:1604: checking compiler flags" >&5 EXTRA_CFLAGS="-YX" CFLAGS_WARNING="-W3" - LDFLAGS_DEBUG="-debug:full -debugtype:cv" + LDFLAGS_DEBUG="-debug:full -debugtype:both" LDFLAGS_OPTIMIZE="-release" # Specify the CC output file names based on the target name @@ -555,7 +555,7 @@ AC_DEFUN(SC_CONFIG_CFLAGS, [ EXTRA_CFLAGS="-YX" CFLAGS_WARNING="-W3" - LDFLAGS_DEBUG="-debug:full -debugtype:cv" + LDFLAGS_DEBUG="-debug:full -debugtype:both" LDFLAGS_OPTIMIZE="-release" # Specify the CC output file names based on the target name |