1. 查看gcc环境

gcc -v

如果Linux系统没有安装gcc编译器,会提示“Command not found”。如果系统上安装了gcc编译器,这条命令就会显示出当前安装的gcc编译器是哪个版本。下图展示为已安装的信息。

2. 查看pcre环境

rpm -qa pcre

看到pcre的版本,说明已安装,否则未安装。下图展示为已安装信息。

3. 查看zlib环境

yum list installed | grep zlib*
openssl
传输层安全性/安全套接层及其加密库

看到zlib的版本,说明已安装,否则未安装。下图展示为已安装信息。

4. 查看openssl环境

rpm -qa openssl

看到openssl的版本,说明已安装,否则未安装。下图展示为已安装信息。

--------------------------------------- 分隔符 -----------------------------------------------------------

安装gcc、pcre、zlib、openssl环境。以上缺少的环境,使用下述脚本按需安装。

yum install gcc-c++
yum install -y pcre pcre-devel
yum install -y zlib zlib-devel
yum install -y openssl openssl-devel
GitHub 加速计划 / ope / openssl
26
1
下载
传输层安全性/安全套接层及其加密库
最近提交(Master分支:5 个月前 )
a5f98e6d - Tolerate RSA PKCS#1 *certificate* signatures when the peer sigals include RSA PSS with the same digest. Now that we're more strict about not sending sigalgs that are out of protocol range, when the client supports TLS 1.3 only, we might refuse to return an RSA PKCS#1-signed cert. - Don't send TLS 1.3 sigalgs when requesting client certs from a TLS 1.2 client. Fixes: #1144 Fixes: #25277 Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/27166) 13 小时前
ea776089 This is a 9 month old change, so I am not sure why it is only causing a compile issue now. Reported by David Makepeace Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/27186) 13 小时前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐