From 18ce6678147c4864561383b6bfb9922740225c88 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Thu, 23 Feb 2017 00:26:19 -0500 Subject: [PATCH] Updated instructions --- docs/User-Manual.md | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/docs/User-Manual.md b/docs/User-Manual.md index 37db2bb5..2f1294b4 100644 --- a/docs/User-Manual.md +++ b/docs/User-Manual.md @@ -40,17 +40,22 @@ The following packages are required: - make - gcc +- [LibTomMath](https://github.com/libtom/libtommath) - [Concurrency Kit](http://concurrencykit.org/) - The best way to install libck is via a package manager such as `apt-get`. But if a package is not available for this library it can also be built from source. Just replace `0.5.0` below with the latest version available from their website: + NOTE: The best way to install `libck` is via a package manager such as `apt-get`. But if a package is not available for this library it can also be built from source. Just replace `0.5.2` below with the latest version available from their website: - wget http://concurrencykit.org/releases/ck-0.5.0.tar.gz - tar xfz ck-0.5.0.tar.gz ; cd ck-0.5.0 ; ./configure && make all && sudo make install + wget http://concurrencykit.org/releases/ck-0.5.2.tar.gz + tar xfz ck-0.5.2.tar.gz ; cd ck-0.5.2 ; ./configure PREFIX=/usr && make all && sudo make install sudo ldconfig -- [LibTomMath](https://github.com/libtom/libtommath) +On a Debian variant such as Ubuntu the necessary packages may be installed via the command: - Again, the best way to install `libtommath` is via your system's package manager. + sudo apt-get install libtommath-dev libck-dev make gcc + +The following command can be used to install dependencies on Fedora, though `libck` will also need to be built from source: + + sudo yum install libtommath-devel gcc make # Installation