diff options
author | davygrvy <davygrvy@noemail.net> | 2001-09-03 00:49:34 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@noemail.net> | 2001-09-03 00:49:34 (GMT) |
commit | 12a9715a841bc92d35585fb02bd835f50a025845 (patch) | |
tree | 72f653586620f9d4ceedcce00757d781eb015c6b /win/makefile.vc | |
parent | b1bea92889c4a2ad17ae7476d4e98dea31774ca0 (diff) | |
download | tcl-12a9715a841bc92d35585fb02bd835f50a025845.zip tcl-12a9715a841bc92d35585fb02bd835f50a025845.tar.gz tcl-12a9715a841bc92d35585fb02bd835f50a025845.tar.bz2 |
* win/makefile.vc: Added -Zl (zee el) to tclStubLib.c compile line
to make sure the tclstub84.lib static library is built without
requiring a specific C-runtime library at link-time for the end-use
developer. It has been noted on c.l.t that this trips many first
time users trying to make extensions.
[Patch: 403533]
FossilOrigin-Name: 91177eafab41f708d146ec88ba7eacee16f0c73d
Diffstat (limited to 'win/makefile.vc')
-rw-r--r-- | win/makefile.vc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index 9b01e08..80f64a8 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -6,7 +6,7 @@ # Copyright (c) 1995-1996 Sun Microsystems, Inc. # Copyright (c) 1998-2000 Ajuba Solutions. # -# RCS: @(#) $Id: makefile.vc,v 1.62 2001/08/22 23:55:00 hobbs Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.63 2001/09/03 00:49:34 davygrvy Exp $ # Does not depend on the presence of any environment variables in # order to compile tcl; all needed information is derived from @@ -491,7 +491,7 @@ $(TMPDIR)\tclWinDde.obj : $(WINDIR)\tclWinDde.c # be built as DLL objects but none of the symbols should be exported $(TMPDIR)\tclStubLib.obj : $(GENERICDIR)\tclStubLib.c - $(cc32) $(TCL_CFLAGS) -DSTATIC_BUILD -Fo$@ $? + $(cc32) $(TCL_CFLAGS) -Zl -DSTATIC_BUILD -Fo$@ $? # Dedependency rules |