我收到以下错误
C:\Users\Bill\AppData\Local\Temp\ccPRaS4e.o:test.c:(.text+0xca): undefined reference to `curl_global_init'
collect2.exe: error: ld returned 1 exit status
通过此命令
mingw32-gcc.exe -DCURL_STATICLIB -lcurl -Iinc -Llibcurl.dll test.c -o test.exe
test.c
#include <curl/curl.h>
int main(void) {
curl_global_init(CURL_GLOBAL_ALL);
}
我在文件夹中有 test.c 以及 libcurl.dll (来自this page的Windows 32位7.61.1二进制文件)和我的 inc 文件夹。在我的 inc 文件夹中,是 curl-7.61.1.zip 中 include 文件夹中的 curl 文件夹,其中我从this page的顶部下载。
我在做什么错了?