From c7518f84f8712283bd7151c3d4d1f3e266d3abfc Mon Sep 17 00:00:00 2001 From: Robo Date: Sat, 4 Jul 2015 10:27:29 +0530 Subject: [PATCH] doc: linux troubleshooting libtinfo.so.5 not found --- docs/development/build-instructions-linux.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/development/build-instructions-linux.md b/docs/development/build-instructions-linux.md index 8f0d9cea35f9..161f77d9956e 100644 --- a/docs/development/build-instructions-linux.md +++ b/docs/development/build-instructions-linux.md @@ -96,6 +96,15 @@ $ ./script/clean.py Make sure you have installed all the build dependencies. +### error while loading shared libraries: libtinfo.so.5 + +Prebulit `clang` will try to link to `libtinfo.so.5`. Depending on the host architecture, +symlink to appropirate `libncurses` + +```bash +$ sudo ln -s /usr/lib/libncurses.so.5 /usr/lib/libtinfo.so.5 +``` + ## Tests ```bash