Tcl Source Code

Ticket Change Details
Login
Overview

Artifact ID: 12dd1c2a7a52f28f5f722cafc75dbb13be2da189
Ticket: 395e4d28b1bc2614be6a14bffc10bc2cb538f5bb
8.6.2 RC1 sqlite build fails
User & Date: apnadkarni 2014-08-20 03:43:11
Changes

  1. icomment:
    The patch below, copied from the tclsh makefile fixes the problem for me.
    
    --- makefile.vc.orig    2014-08-20 08:22:27 +0530
    +++ makefile.vc 2014-08-20 09:07:28 +0530
    @@ -282,6 +282,14 @@
     conlflags = $(lflags) -subsystem:console
     guilflags = $(lflags) -subsystem:windows
     baselibs   = $(TCLSTUBLIB)
    +# Avoid 'unresolved external symbol __security_cookie' errors.
    +# c.f. http://support.microsoft.com/?id=894573
    +!if "$(MACHINE)" == "IA64" || "$(MACHINE)" == "AMD64"
    +!if $(VCVERSION) > 1399 && $(VCVERSION) < 1500
    +baselibs   = $(baselibs) bufferoverflowU.lib
    +!endif
    +!endif
    +
    
     #---------------------------------------------------------------------
     # TclTest flags
    
  2. login: "apnadkarni"
  3. mimetype: "text/plain"