链接库出现问题。我做错了什么?

发布于 2024-10-01 17:42:15 字数 204 浏览 6 评论 0原文

C:\Users\Kyle\Desktop\Neutralized\project\Neutralized\Download.c|19|对 `imp_curl_global_init' 的未定义引用|

如何链接该库?

我链接了这个:......\curl-7.21.2\lib\Debug\libcurl.lib

但它不起作用。

C:\Users\Kyle\Desktop\Neutralized\project\Neutralized\Download.c|19|undefined reference to `imp_curl_global_init'|

How do I link the library?

I've linked this: ......\curl-7.21.2\lib\Debug\libcurl.lib

But it isn't working.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅浅 2024-10-08 17:42:15

您没有指定您使用的是哪个编译器,但我猜它是 gcc ——过程对于其他编译器来说并没有太大不同。

首先,确保在项目->属性->链接器选项卡下正确添加导入库。对于 gcc,要使用的开关是 -lcurl。其次,确保正确包含库搜索路径 - 即 libcurl.lib 的文件夹位置必须位于 -L< 中。文件夹位置>链接时。否则链接器将不知道在哪里找到它。

You didn't specify which compiler you were using but I'm going to guess it's gcc -- procedure isn't too different for other compilers.

First, make sure the import library is properly added under project->properties->linker tab. For gcc the switch to use is -lcurl. Second make sure the library search path is properly included -- that is the folder location of libcurl.lib must be in the -L< folder location > when linking. Otherwise the linker won't know where to find it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文