summaryrefslogtreecommitdiff
path: root/INSTALL.md
diff options
context:
space:
mode:
Diffstat (limited to 'INSTALL.md')
-rw-r--r--INSTALL.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 81db3a45..82f5ef97 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -112,6 +112,21 @@ autoreconf -i
112make 112make
113make install 113make install
114``` 114```
115
116If execution fails with errors like "dyld: Library not loaded: /opt/tox-im/lib/libtoxcore.0.dylib", you may need to specify libsodium path:
117
118Determine pathes:
119```
120brew list libsodium
121```
122
123Configure include and lib folder and build again:
124```bash
125./configure--with-libsodium-headers=/usr/local/Cellar/libsodium/0.4.5/include/ --with-libsodium-libs=/usr/local/Cellar/libsodium/0.4.5/lib/
126make
127make install
128```
129
115Advance configure options: 130Advance configure options:
116 - --prefix=/where/to/install 131 - --prefix=/where/to/install
117 - --with-libsodium-headers=/path/to/libsodium/include/ 132 - --with-libsodium-headers=/path/to/libsodium/include/