CentOS 7 安装 libsodium

#下载并解压

wget https://download.libsodium.org/libsodium/releases/libsodium-1.0.18-stable.tar.gz
tar -zxf libsodium-1.0.18-stable.tar.gz
cd libsodium-stable

#编译安装

./configure --prefix=/usr
make && make check
sudo make install
sudo ldconfig

  

#如出现以下错误:

config.status: error: Something went wrong bootstrapping makefile fragments
     for automatic dependency tracking.  Try re-running configure with the
     '--disable-dependency-tracking' option to at least be able to build
     the package (albeit without support for automatic dependency tracking). 

 #执行:

yum install make -y

  

posted @ 2023-08-16 22:15  cansin  阅读(588)  评论(0编辑  收藏  举报