Skip to content

Commit b448e97

Browse files
authoredJan 6, 2019
Added libsodium to BTH windows 32
1 parent 63b030a commit b448e97

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
 

‎unix/BTH/install-windows-32bit-crosscompile.sh

+12
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,18 @@ sudo apt-get install automake pkg-config bsdmainutils python3 -y
2727
# Libx11
2828
sudo apt-get install libx11-xcb-dev libfontconfig-dev -y
2929

30+
# Install Libsodium
31+
wget https://download.libsodium.org/libsodium/releases/LATEST.tar.gz
32+
tar -xf LATEST.tar.gz
33+
rm -rf LATEST.tar.gz
34+
cd libsodium-stable/
35+
./configure
36+
make && make check
37+
sudo make install
38+
cd ..
39+
rm -rf libsodium-stable
40+
sudo ln -s /usr/local/lib/libsodium.so.23 /usr/lib/libsodium.so.23
41+
3042
# Install BerkelyDB
3143
sudo apt-get install software-properties-common -y
3244
sudo add-apt-repository ppa:bitcoin/bitcoin

0 commit comments

Comments
 (0)
Please sign in to comment.