如何在tcl中编译可加载的dll

时间:2009-09-08 05:20:45

标签: c++ dll compilation tcl

尝试了很多并搜索web选项来编译并加载dll后,我无法为tcl创建dll。你能解释一下如何做到这一点。

1 个答案:

答案 0 :(得分:8)

好的,这是一个简单的例子。此代码编译并适用于Tcl8.5和VS2008。首先,我创建了一个名为BasicTclExtn的WIN32 dll项目,用于导出符号。

// BasicTclExtn.h
#ifdef BASICTCLEXTN_EXPORTS
#define BASICTCLEXTN_API __declspec(dllexport)
#else
#define BASICTCLEXTN_API __declspec(dllimport)
#endif

int BasicExtnCmd(ClientData data, Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[]) ;
extern "C" {
    BASICTCLEXTN_API int Basictclextn_Init(Tcl_Interp *interp) ;
}

然后是.cpp文件

// BasicTclExtn.cpp : Defines the exported functions for the DLL application.
#include "stdafx.h"
#include "BasicTclExtn.h"

int
BasicExtnCmd(ClientData data,
             Tcl_Interp *interp,
             int objc,
             Tcl_Obj *CONST objv[])
{

    // Check the number of arguments
    if (objc != 3) {
        Tcl_WrongNumArgs(interp, 1, objv, "arg arg");
        return TCL_ERROR;
    }

    long v1, v2, result ;

    if ( Tcl_GetLongFromObj(interp, objv[1], &v1) != TCL_OK)
        return TCL_ERROR ;

    if ( Tcl_GetLongFromObj(interp, objv[2], &v2)  != TCL_OK)
        return TCL_ERROR ;

    result = v1 + v2 ;

    Tcl_SetObjResult(interp, Tcl_NewIntObj(result)) ;
        return TCL_OK ;
}

    // Note the casing on the _Init function name
    BASICTCLEXTN_API int Basictclextn_Init(Tcl_Interp *interp)
    {
        // Link with the stubs library to make the extension as portable as possible
        if (Tcl_InitStubs(interp, "8.1", 0) == NULL) {
            return TCL_ERROR;
        }

        // Declare which package and version is provided by this C code
        if ( Tcl_PkgProvide(interp, "BasicTclExtn", "1.0") != TCL_OK ) {
            return TCL_ERROR ;
        }

        // Create a command
        Tcl_CreateObjCommand(interp, "BasicExtnCmd", BasicExtnCmd, (ClientData)NULL, (Tcl_CmdDeleteProc *)NULL);

        return TCL_OK ;
    }

你需要在stdafx.h中#include tcl.h。

此示例使用Tcl存根工具,有关详细信息,请参阅Tcl_InitStubs函数的文档;使用存根时,您只需要链接到tclstub85.lib。要使代码正确链接,您需要执行以下操作:

  • 将安装了tcl.h的include目录添加到Configuration Properties - > C / C ++ - >一般 - >其他包含目录
  • 定义USE_TCL_STUBS符号,我通常在属性中执行此操作 - &gt; C / C ++ - &gt;预处理器 - &gt;预处理器定义。您可能还会发现在此之后需要定义<DLLNAME>_EXPORTS(我的示例中为BASICTCLEXTN_EXPORTS),我不确定为什么会发生这种情况。
  • 将路径添加到tclstub85.lib文件所在的目录中,作为配置属性中的附加库目录 - &gt;链接器 - &gt;一般 - &gt;其他图书馆馆藏。
  • 将tclstub85.lib添加到配置属性 - &gt;链接器 - &gt;输入 - &gt;额外的Dependancies
  • 如果编译器发出有关MSVCRT的警告,则通过将MSVCRT添加到配置属性中的忽略库中来排除MSVCRT。链接器 - &gt;输入 - &gt;忽略特定图书馆。

所有这些.lib,.dll和.h文件都应该在Tcl安装中很容易找到。您还需要确保在运行时可以找到相关的tclstub85.dll和tcl85.dll,确保Tcl上的bin目录在PATH上应该排除。因此,您应该能够从Tcl执行以下操作:

C:\Projects\BasicTclExtn\Debug>tclsh
% load BasicTclExtn.dll
% BasicExtnCmd 1 2
3
% BasicExtnCmd 1 2.p
expected integer but got "2.p"
% BasicExtnCmd 1 2
3
% BasicExtnCmd 1
wrong # args: should be "BasicExtnCmd arg arg"
% BasicExtnCmd 1 3
4
% exit

这是Tcl exextention的最简单形式,您可以向Tcl_CreateObjCommand()添加其他调用以向此扩展中添加更多提交。 Tcl提供了一些帮助处理传递给命令的命令行参数的方法。示例代码使用了Tcl_WrongNumArgs(),但您还应该查看Tcl_GetIndexFromObj()函数。

我还建议你在Brent Welch的Tcl和Tk中获得一份实用编程。你可以在这里阅读一些示例章节http://www.beedub.com/book/,第3版关于Tcl的C编程章节将对你有所帮助。