Confirming.  Python-lldb-3.8 has missing dependencies and some broken symlinks.

After installing python-lldb-3.8, I needed to take the steps below (as
root) before I could 'import lldb' successfully.

apt-get install lldb-3.8 liblldb-3.8 liblldb-3.8-dev

cd /usr/lib/llvm-3.8/lib/python2.7/site-packages/lldb
rm libLLVM-3.8.0.so.1
ln -s ../../../../../x86_64-linux-gnu/libLLVM-3.8.0.so.1 libLLVM-3.8.0.so.1
rm libLLVM-3.8.so.1
ln -s ../../../../../x86_64-linux-gnu/libLLVM-3.8.0.so.1 libLLVM-3.8.so.1
rm _lldb.so
ln -s ../../../../../x86_64-linux-gnu/liblldb-3.8.so _lldb.so

Reply via email to