diff options
author | hobbs <hobbs> | 2002-04-12 06:37:41 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2002-04-12 06:37:41 (GMT) |
commit | ecab85375168b0960e82a6cdae58598f4a7b389b (patch) | |
tree | b1562928f0f07f9b20c2153b2ec32c39597f51bc | |
parent | a44dd3304e490bc1050129709ffaf00132e54403 (diff) | |
download | tk-ecab85375168b0960e82a6cdae58598f4a7b389b.zip tk-ecab85375168b0960e82a6cdae58598f4a7b389b.tar.gz tk-ecab85375168b0960e82a6cdae58598f4a7b389b.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
-rwxr-xr-x | win/configure | 4 | ||||
-rw-r--r-- | win/tcl.m4 | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/win/configure b/win/configure index 0c774d9..caee41c 100755 --- a/win/configure +++ b/win/configure @@ -535,7 +535,7 @@ fi TK_VERSION=8.4 TK_MAJOR_VERSION=8 TK_MINOR_VERSION=4 -TK_PATCH_LEVEL="a4" +TK_PATCH_LEVEL="a5" VER=$TK_MAJOR_VERSION$TK_MINOR_VERSION #------------------------------------------------------------------------ @@ -1339,7 +1339,7 @@ echo "configure:1181: 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 @@ -530,7 +530,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 |