开发者

CURL and ZLIB Compilation

开发者 https://www.devze.com 2023-04-07 06:03 出处:网络
When compiled correctly, how are these two associated together? I\'m attempting to use the ZLIB library in my CURL install and want to confirm that I\'ve compiled CURL and ZLIB correctly. Should the l

When compiled correctly, how are these two associated together? I'm attempting to use the ZLIB library in my CURL install and want to confirm that I've compiled CURL and ZLIB correctly. Should the libcurl.lib now have all of ZLIB after a successful compile or is the zlib.lib library st开发者_运维百科ill required?


No. It is not like that. When you compiled CURL with ZLIB SUPPORT, those header files were included in CURL source which were needed for compiling the function/API's present in the ZLIB library.

You would never be able to compile CURL with ZLIB support with ZLIB library in your sustem.

Consider, CURL with ZLIB is just a program which you would write to call functions provided by ZLIB.


The .lib archives are just a collection of compiled source files, nothing more. By convention and practicality, they only include the objects compiled for their respective library. So, to link against the libcurl you have created, you must also link against the zlib. Professional configuration systems (e.g. pkg-config) will automate this step away from you, but you'll always need the zlib.lib if you didn't do any linker magic.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号