Tôi cố gắng để sử dụng Curl trong C.tài liệu tham khảo không xác định để curl_global_init, curl_easy_init và chức năng khác (C)
tôi đến thăm Curl trang chính thức, và sao chép mã nguồn mẫu.
dưới đây là liên kết: http://curl.haxx.se/libcurl/c/sepheaders.html
khi tôi chạy mã này với lệnh "gcc test.c",
console thấy thông báo như bên dưới.
/tmp/cc1vsivQ.o: In function `main':
test.c:(.text+0xe1): undefined reference to `curl_global_init'
test.c:(.text+0xe6): undefined reference to `curl_easy_init'
test.c:(.text+0x10c): undefined reference to `curl_easy_setopt'
test.c:(.text+0x12e): undefined reference to `curl_easy_setopt'
test.c:(.text+0x150): undefined reference to `curl_easy_setopt'
test.c:(.text+0x17e): undefined reference to `curl_easy_cleanup'
test.c:(.text+0x1b3): undefined reference to `curl_easy_cleanup'
test.c:(.text+0x1db): undefined reference to `curl_easy_setopt'
test.c:(.text+0x1e7): undefined reference to `curl_easy_perform'
test.c:(.text+0x1ff): undefined reference to `curl_easy_cleanup'
Tôi không biết cách giải quyết vấn đề này.