[Lldb-commits] [PATCH] D19067: Make sure to use lib instead of lib64 for LLDB_LIB_DIR

Francis Ricci via lldb-commits lldb-commits at lists.llvm.org
Thu Apr 14 10:01:34 PDT 2016


fjricci added a comment.

When I use LLVM_LIBDIR_SUFFIX=64, it looks like the python _lldb.so symlink still points to build/lib/liblldb.so, instead of using the lib64 directory. So if I do this, none of the tests will run on the check-lldb target, since importing lldb in python fails.

Perhaps this symlink is the bug that should be fixed? However, it appears that finish-swig-Python-LLDB.sh already has the correct logic for this, so it's not immediately clear to me why the symlink is incorrect (if this seems like a bug we want fixed, I'll investigate):

  ln -s "../../../liblldb${SOEXT}" _lldb.so


http://reviews.llvm.org/D19067





More information about the lldb-commits mailing list