cmake安装出错

问题描述:
按照这篇文章升级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

即可解决问题。

你可能感兴趣的:(程序纠错,linux,服务器)