Unsupported protocol while download tar.gz package

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

    The problem may be that the CURL library shipped with CMake isn't build with SSL support by default. I had to compile cmake with:

    ./bootstrap --system-curl
    make
    sudo make install
    

    ... and that worked, because my system's curl has SSL support.

提交回复
热议问题