How to compile GnuTLS

前端 未结 7 612
太阳男子
太阳男子 2021-02-07 03:57

I\'m trying to compile GnuTLS library several times on Centos 6.2 but with no luck. These are the steps:

I downloaded Nettle 2.4

[root@localhost opt]# wg         


        
7条回答
  •  情书的邮戳
    2021-02-07 04:56

    GnuTLS depends on nettle which is missing on your environment.

    • You can download the nettle package and install
    cd nettle-xxx
    ./configure 
    make 
    sudo make install
    
    • Or if it is ubuntu system you can install from apt
    sudo apt install nettle-dev nettle-bin
    

提交回复
热议问题