-
github仓库地址:https://github.com/openssl/openssl
# 下载特定版本
wget https://www.openssl.org/source/old/3.0/openssl-3.0.0-alpha3.tar.gz
tar -xvf openssl-3.0.0-alpha3.tar.gz && cd openssl-3.0.0-alpha3
# 配置编译安装动作并生成 Makefile 文件
./config no-shared -no-tests --prefix=/usr/local/ssl --openssldir=/usr/local/ssl '-Wl,-rpath,$(LIBRPATH)'
# 使用4个线程编译 && 安装
make -j4 && make install
# 检查版本
openssl version
标签:alpha3,https,tar,openssl,OpenSSL,编译,3.0,Linux
From: https://www.cnblogs.com/hhddd-1024/p/17781391.html