Skip to content
This repository was archived by the owner on Jul 15, 2020. It is now read-only.

Commit d399ed5

Browse files
authored
Merge pull request #216 from CarlosLopezDeLara/patch-9
instructions for new dependencies on 1.14.0
2 parents 0a86f2c + 6bed0f3 commit d399ed5

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

node-setup/000_install.md

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ For Debian/Ubuntu use the following instead:
3636

3737

3838
sudo apt-get update -y
39-
sudo apt-get install build-essential pkg-config libffi-dev libgmp-dev libssl-dev libtinfo-dev libsystemd-dev zlib1g-dev make g++ tmux git jq wget libncursesw5 -y
39+
sudo apt-get install build-essential pkg-config libffi-dev libgmp-dev libssl-dev libtinfo-dev libsystemd-dev zlib1g-dev make g++ tmux git jq wget libncursesw5 libtool autoconf -y
4040

4141
If you are using a different flavor of Linux, you will need to use the package manager suitable for your platform instead of `yum` or `apt-get`, and the names of the packages you need to install might differ.
4242

@@ -82,7 +82,7 @@ Above instructions install Cabal version `3.2.0.0`. You can check the version by
8282

8383
cabal --version
8484

85-
Finally we download and install GHC:
85+
Download and install GHC:
8686

8787
wget https://downloads.haskell.org/~ghc/8.6.5/ghc-8.6.5-x86_64-deb9-linux.tar.xz
8888
tar -xf ghc-8.6.5-x86_64-deb9-linux.tar.xz
@@ -91,6 +91,19 @@ Finally we download and install GHC:
9191
./configure
9292
sudo make install
9393
cd ..
94+
95+
Install Libsodium
96+
97+
git clone https://github.com/input-output-hk/libsodium
98+
cd libsodium
99+
git checkout 66f017f1
100+
./autogen.sh
101+
./configure
102+
make
103+
sudo make install
104+
105+
export LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH"
106+
94107

95108
## Download the source code for cardano-node
96109

@@ -116,7 +129,7 @@ For the FF-testnet, we will use tag `1.13.0`, which we can check out as follows:
116129

117130
git fetch --all --tags
118131
git tag
119-
git checkout tags/1.13.0
132+
git checkout tags/1.14.0
120133

121134

122135
## Build and install the node

0 commit comments

Comments
 (0)