Unsupported protocol while download tar.gz package

后端 未结 7 1041
一整个雨季
一整个雨季 2020-12-30 05:07

I have just upgrade my CMake from version 2.8 to 3.2.

It\'s working like a charm in CMake 2.8 but, after the upgrade, it\'s failing.

I\'m trying to build thi

相关标签:
7条回答
  • 2020-12-30 05:56

    For CMake 3.8.0 this worked for me:

    1. Install/update openssl:

      yum install openssl openssl-devel
      
    2. Adapt the solution from a CMake forum reply by Brad King:

      ./configure --prefix=/software/cmake-3.8.0/ --parallel=${NPROC} -- \ 
          -/DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_USE_OPENSSL:BOOL=ON
      make -j ${NPROC} 
      make install
      
    3. Enjoy!

    0 讨论(0)
提交回复
热议问题