1、下载并解压
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
备用下载地址:https://down.24kplus.com/linux/libsodium-1.0.18-stable.tar.gz
2、编译安装
./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