链接库出现问题。我做错了什么?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您没有指定您使用的是哪个编译器,但我猜它是 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.