Skip to content

Commit 76c2fc8

Browse files
committedJan 4, 2019
Included BerkelyDB 4.8
1 parent b7d78ed commit 76c2fc8

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed
 

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

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ sudo apt install nsis -y
77
# Set the default mingw32 g++ compiler option to posix.
88
sudo update-alternatives --config i686-w64-mingw32-g++ -y
99

10+
# Install BerkelyDB
11+
sudo apt-get install software-properties-common -y
12+
sudo add-apt-repository ppa:bitcoin/bitcoin
13+
sudo apt-get update -y
14+
sudo apt-get install libdb4.8-dev libdb4.8++-dev -y
1015

1116
# Clone BTH
1217
cd /$1

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

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ sudo apt install nsis -y
77
# Set the default mingw32 g++ compiler option to posix.
88
sudo update-alternatives --config x86_64-w64-mingw32-g++ -y
99

10+
# Install BerkelyDB
11+
sudo apt-get install software-properties-common -y
12+
sudo add-apt-repository ppa:bitcoin/bitcoin
13+
sudo apt-get update -y
14+
sudo apt-get install libdb4.8-dev libdb4.8++-dev -y
15+
1016
# Clone BTH
1117
cd /$1
1218
git clone https://github.com/BTHPOS/BTH.git BTH

0 commit comments

Comments
 (0)
Please sign in to comment.