cmake 从源码编译 grpc 的时候, 出现这个错误。

Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the
  system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY...

系统是 Mac, 错误信息说需要设置系统变量。 尝试在 cmake 中加参数执行后,再 make,还是报错。 

cmake -DOPENSSL_ROOT_DIR=xxx ..

最后通过 export 设置环境变量解决问题。

 export OPENSSL_ROOT_DIR=/opt/homebrew/opt/openssl@3/
 export OPENSSL_LIBRARIES=/opt/homebrew/opt/openssl@3/lib

cmake ..

make

另外, 编译 GRPC 时,遇到这个错误:

ld: warning: pointer not aligned at address xxx

CPU不支持 指针对齐,去掉这行代码的注释即可 grpc/src/grpc/third_party/nanopb/pb.h:

/* #define PB_NO_PACKED_STRUCTS 1 */

GitHub 加速计划 / ope / openssl
25.13 K
9.99 K
下载
传输层安全性/安全套接层及其加密库
最近提交(Master分支:1 个月前 )
fd39d1c8 Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/25095) 3 个月前
ae87c488 Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/25095) 3 个月前
Logo

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

更多推荐