Unsupported protocol while download tar.gz package

后端 未结 7 1095
一整个雨季
一整个雨季 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

    What it worked for me is the following:

    1. Update openssl

      sudo apt-get install openssl libssl-dev
      
    2. Modify bootstrap file to enable CMAKE_USE_OPENSSL. Replace this line by:

      cmake_options="-DCMAKE_BOOTSTRAP=1 -DCMAKE_USE_OPENSSL=ON"
      
    3. Run bootstrap script normally in cmake folder

      /@path_to_cmake/bootstrap
      

提交回复
热议问题