macos安装openssl3
brew安装openssl3失败,所以用手动方式来安装
curl -O https://www.openssl.org/source/openssl-3.5.1.tar.gz
tar xzfv openssl-3.5.1.tar.gz
cd openssl-3.5.1
./config \
--prefix=/usr/local/Cellar/openssl@3/3.5.1 \
--openssldir=/usr/local/openssl@3 \
--libdir=lib \
no-ssl3 \
no-ssl3-method \
no-zlib \
darwin64-x86_64-cc \
enable-ec_nistp_64_gcc_128
make
make install MANDIR=/usr/local/Cellar/openssl@3/3.5.1/share/man MANSUFFIX=ssl
作者:SteveChen 创建时间:2025-07-03 08:45
最后编辑:SteveChen 更新时间:2025-07-03 08:46
最后编辑:SteveChen 更新时间:2025-07-03 08:46