diff options
author | wart <wart> | 1999-07-28 18:51:29 (GMT) |
---|---|---|
committer | wart <wart> | 1999-07-28 18:51:29 (GMT) |
commit | 5c79295d286304b7a34f3b09812f4114d4df6089 (patch) | |
tree | 23dc73f3061ba35d80e1a9386077693e6085b032 /win/tclConfig.sh.in | |
parent | eee25bb571c43b9d4ff16fc5d60ccc66a3e81454 (diff) | |
download | tcl-5c79295d286304b7a34f3b09812f4114d4df6089.zip tcl-5c79295d286304b7a34f3b09812f4114d4df6089.tar.gz tcl-5c79295d286304b7a34f3b09812f4114d4df6089.tar.bz2 |
Added entries for LDFLAGS_DEBUG and LDFLAGS_OPTIMIZE so that extensions can
get these values in the same way they get the debug and optimize CFLAGS.
Diffstat (limited to 'win/tclConfig.sh.in')
-rw-r--r-- | win/tclConfig.sh.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/win/tclConfig.sh.in b/win/tclConfig.sh.in index 34ce519..3258d3d 100644 --- a/win/tclConfig.sh.in +++ b/win/tclConfig.sh.in @@ -9,7 +9,7 @@ # # The information in this file is specific to a single platform. # -# RCS: @(#) $Id: tclConfig.sh.in,v 1.1 1999/06/16 22:38:25 surles Exp $ +# RCS: @(#) $Id: tclConfig.sh.in,v 1.2 1999/07/28 18:51:30 wart Exp $ TCL_SRC_DIR="@TCL_SRC_DIR@" @@ -40,6 +40,10 @@ TCL_DBGX=@TCL_DBGX@ TCL_CFLAGS_DEBUG='@CFLAGS_DEBUG@' TCL_CFLAGS_OPTIMIZE='@CFLAGS_OPTIMIZE@' +# Default linker flags used in an optimized and debuggable build, respectively. +TCL_LDFLAGS_DEBUG='@LDFLAGS_DEBUG@' +TCL_LDFLAGS_OPTIMIZE='@LDFLAGS_OPTIMIZE@' + # Flag, 1: we built a shared lib, 0 we didn't TCL_SHARED_BUILD=@TCL_SHARED_BUILD@ |