我正在尝试使用C / C ++ FTP库(>here's the website)。当我尝试调用FtpInit()函数时,出现编译错误,告诉我有一个undefined reference to _imp__FtpInit
。这是我要编译的内容:
#include "ftplib/ftplib.h"
int main()
{
FtpInit();
return 0;
}
最佳答案
您是否记得将-L
库路径设置为安装库的位置,并使用-lftplib
(或类似名称,具体取决于实际库文件的名称)来链接库?
关于c++ - C/C++ ftplib:对_imp__FtpInit的 undefined reference ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4997790/