gpt4 book ai didi

c - Windows 下的 GnuTLS API

转载 作者:行者123 更新时间:2023-11-30 17:26:11 28 4
gpt4 key购买 nike

我正在尝试在 Windows 计算机上使用 GnuTLS API,遗憾的是它不起作用。我下载了适用于 Windows 的最新预编译版本 gnutls-3.3.9-w32.zip。

每次我调用 GnuTLS 函数时,我的程序都可能无法运行。为了测试,只有两行代码:

printf ("hello");
gnutls_global_init();

它将构建没有错误,但它不会打印“hello”,如果我删除第二行它就可以工作。所以GnuTLS的使用肯定有错误。

我包含了 libgnutls-28.dll

gcc "-LC:GnuTLS\\gnutls-3.3.9-w32\\bin" -o Test.exe test.o -llibgnutls-28 

我必须以某种方式链接 libgnutls.dll.a 文件吗?

最佳答案

我必须以某种方式链接 libgnutls.dll.a 文件吗?

是的。构建需要链接库。但你说它构建得很好......为了支持 Marc B 所说的,测试一下你的 printf 是否正常工作:

printf ("hello");
getchar(); // to stop execution before calling init
//Check the return of your init function
status = gnutls_global_init();//On success, GNUTLS_E_SUCCESS (zero) is returned,

测试时只需两行代码:
再添加一些来检查 init 函数的状态:

if(status < 0)                //otherwise an error code is returned.
{
//handle error
}

点击gnutls_global_init 用于手册页。

要检查的另一件事是 .dll 所在的位置。

确保它在运行时对可执行文件可见。将其放入 .exe 中。目录或系统的 $SYSTEM$ 目录中。

人们的一个问题是 WoW64 。 Windows 7(或 8)上 32 位应用程序的 Windows 系统目录是 c:\windows\sysWoW64\(即不是 c:\windows\system32)。 讽刺的是64 位应用程序的系统目录是 c:\windows\system32\。

关于c - Windows 下的 GnuTLS API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26846630/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com