问题描述:
按照这篇文章升级cmake,出现以下错误:
– Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR) CMake Error at Utilities/cmcurl/CMakeLists.txt:454 (message): Could not find OpenSSL. Install an OpenSSL development package or configure CMake with -DCMAKE_USE_OPENSSL=OFF to build without OpenSSL.
– Configuring incomplete, errors occurred! See also “/opt/cmake/cmake-3.16.6/CMakeFiles/CMakeOutput.log”. See also
“/opt/cmake/cmake-3.16.6/CMakeFiles/CMakeError.log”.
Error when bootstrapping CMake:
Problem while running initial CMake
解决:
按照给出的错误描述,要安装openssl,但是安装之后还是报错。
执行:
yum install -y openssl openssl-devel
即可解决问题。
文章讲述了在尝试升级CMake时遇到的OpenSSL找不到的错误,提示设置OPENSSL_ROOT_DIR。解决方案是通过`yuminstallopensslopenssl-devel`安装OpenSSL后依然报错,但最终提供了解决方法。
4867

被折叠的 条评论
为什么被折叠?



