lib curl symbol not found

后端 未结 1 443
北荒
北荒 2021-01-04 23:13

Really stupid C question.

I\'m trying to build the source code here so I can start on modifying it for myself

http://curl.haxx.se/libcurl/c/ftpget.html

相关标签:
1条回答
  • 2021-01-05 00:14

    You need to link with the curl library:

    gcc -o test ftpget.c -lcurl
    
    0 讨论(0)
提交回复
热议问题