diff options
author | Gingeropolous <Gingeropolous@users.noreply.github.com> | 2017-12-07 22:47:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-07 22:47:50 -0500 |
commit | 463d385c96662d842fbcd306b7af7e21efd6e55a (patch) | |
tree | c8b7147a01ea016ab045f7e6d3c6f6f0eef21746 | |
parent | Merge pull request #2845 (diff) | |
download | monero-463d385c96662d842fbcd306b7af7e21efd6e55a.tar.xz |
add libsodium as dependency for building in readme
this finally got my debug-static-all to build. Obviously, its me, so this could use some edits or something.
-rw-r--r-- | README.md | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -172,6 +172,7 @@ library archives (`.a`). | OpenSSL | basically any | NO | `libssl-dev` | `openssl` | NO | sha256 sum | | libzmq | 3.0.0 | NO | `libzmq3-dev` | `zeromq` | NO | ZeroMQ library | | libunbound | 1.4.16 | YES | `libunbound-dev` | `unbound` | NO | DNS resolver | +| libsodium | ? | NO | `libsodium-dev` | ? | NO | libsodium | | libminiupnpc | 2.0 | YES | `libminiupnpc-dev` | `miniupnpc` | YES | NAT punching | | libunwind | any | NO | `libunwind8-dev` | `libunwind` | YES | Stack traces | | liblzma | any | NO | `liblzma-dev` | `xz` | YES | For libunwind | @@ -182,6 +183,7 @@ library archives (`.a`). | Doxygen | any | NO | `doxygen` | `doxygen` | YES | Documentation | | Graphviz | any | NO | `graphviz` | `graphviz` | YES | Documentation | + [^] On Debian/Ubuntu `libgtest-dev` only includes sources and headers. You must build the library binary manually. This can be done with the following command ```sudo apt-get install libgtest-dev && cd /usr/src/gtest && sudo cmake . && sudo make && sudo mv libg* /usr/lib/ ``` |