diff options
author | wart <wart@noemail.net> | 1999-07-28 18:51:28 (GMT) |
---|---|---|
committer | wart <wart@noemail.net> | 1999-07-28 18:51:28 (GMT) |
commit | dd37433cf347a72a1d8af3a6a7f90cd5f62f756d (patch) | |
tree | 23dc73f3061ba35d80e1a9386077693e6085b032 | |
parent | fecbc74f8cf53b736420b08f3cdcde0471d13cbe (diff) | |
download | tcl-dd37433cf347a72a1d8af3a6a7f90cd5f62f756d.zip tcl-dd37433cf347a72a1d8af3a6a7f90cd5f62f756d.tar.gz tcl-dd37433cf347a72a1d8af3a6a7f90cd5f62f756d.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.
FossilOrigin-Name: 0d5ddcfb912766c5815cda3c634f06b355b3acde
-rw-r--r-- | unix/tclConfig.sh.in | 6 | ||||
-rw-r--r-- | win/tclConfig.sh.in | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/unix/tclConfig.sh.in b/unix/tclConfig.sh.in index 0520784..ca5ada2 100644 --- a/unix/tclConfig.sh.in +++ b/unix/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.11 1999/06/16 22:36:24 surles Exp $ +# RCS: @(#) $Id: tclConfig.sh.in,v 1.12 1999/07/28 18:51:29 wart Exp $ # Tcl's version number. TCL_VERSION='@TCL_VERSION@' @@ -31,6 +31,10 @@ TCL_DBGX=@TCL_DBGX@ TCL_CFLAGS_DEBUG='@CFLAGS_DEBUG@' TCL_CFLAGS_OPTIMIZE='@CFLAGS_OPTIMIZE@' +# Default 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@ 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@ |