最近项目需要重新编译libcurl 使其支持ssl,在这里进行记录:
下载openssl : curl -O -L https://github.com/openssl/openssl/archive/OpenSSL_1_1_1g.zip
SRE实战 互联网时代守护先锋,助力企业售后服务体系运筹帷幄!一键直达领取阿里云限量特价优惠。
创建安装目录:/opt/openssl
配置openssl动态库:./config --prefix=/opt/openssl --shared # 默认安装在 /usr/local/lib下; 但是会与先有的openssl 冲突;建议安装到另外一个文件夹中,方便配合libcurl编译;
编译:make -j 30 && make install
编译libcurl
下载curl 源码:https://curl.haxx.se/download.html
我使用的版本:https://curl.haxx.se/download/curl-7.71.1.tar.gz
创建装目录:/opt/libcurl
编译:./configure --with-ssl=/opt/openssl # 默认安装在 /usr/local/lib下; --prefix=/opt/libcurl, 我选择安装到默认位置,/usr/local下;
安装:make -j 30 && make install
配置 LD_LIBRARY_PATH 环境变量,或者库位置,即可引入到项目中;项目编译时,我使用libcurl安装位置的是默认位置,方便配置;openssl 是安装在 /opt/openssl下;通过上述步骤,简单解决了环境依赖问题;