Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
414 views
in Technique[技术] by (71.8m points)

c++ - Undefined reference to curl_easy_init

System Windows 7 64bit, Eclipse Mars + CDT, MinGW 64, curl source https://curl.haxx.se/download.html for Win64 - MinGW64 SSH SSL, have tried other versions with very same linker errors Code:

#include <curl/curl.h>
int main(void) {
    CURL * curl;
    curl = curl_easy_init();
    if (curl) {
        curl_easy_cleanup(curl);
    }
    return 0;
}

The problem with linker errors:

Info: Internal Builder is used for build
g++ -DCURL_STATICLIB "-IC:\Source\curl-7.40.0-devel-mingw64\include" "-IC:\Source\curl-7.40.0-devel-mingw64\include\curl" -O0 -g3 -Wall -c -fmessage-length=0 -o main.o "..\main.cpp" 
g++ -static -Wl,-Map,output.map -o xmlServiceCall.exe main.o -lcurl "-LC:\Source\curl-7.40.0-devel-mingw64\lib64" 
main.o: In function `main':
C:workspace_mars_cppxmlServiceCallDebug/../main.cpp:8: undefined reference to `curl_easy_init'
C:workspace_mars_cppxmlServiceCallDebug/../main.cpp:25: undefined reference to `curl_easy_cleanup'
collect2.exe: error: ld returned 1 exit status

14:14:56 Build Finished (took 848ms)

Have read dozens of similar questions here, and also on other internets, but they all suggest change linking order or add paths which doesn't help. Where else could I dig to solve this problem?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...