简体   繁体   中英

link error when compiling using mingw32

so I'm trying to compile Craft (an open source Minecraft clone in C) using Cmake it all goes well but when it reaches "link" section it gives me several errors about CURL. i have curl installed and it's included in windows PATH. i don't know what is wrong. I's the first time I'm trying to compile an open source software so pls be specific.

here is the snapshot:

在此处输入图片说明

The error messages you see are related to not finding libcurl to link against, not the curl binary. It is unlikely that the search path used by the build system makes use of the windows path. Try installing libcurl from here:

http://curl.haxx.se/download.html

If you still have problems, I'd try posting on a forum dedicated to the project itself. They would probably be able to tell you what's missing in terms of the build system getting pointed at your local copy of the curl library.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM