This is the second problem I encountered when trying to build and install LLDB on my x86_64 gentoo machine. The scripts/lldb_python_module.cmake have .../lib/... part of the path written literally to compose a path to things that should be copied during 'make install'. Unfortunately, at build time these things are placed to a directory composed with the 'lib' part returned by get_python_lib() function. On my 64-bit system it is 'lib64'. This patch uses sed command to get rid of unwanted '64' or '32' part.
Details
Details
- Reviewers
- None
Diff Detail
Diff Detail
Event Timeline
Comment Actions
Closing double-quotes in the scripts/Python/build-swig-Python.sh are in wrong places causing syntax error that goes unnoticed silently. The scripts/Python/finish-swig-Python-LLDB.sh file has these things written in correct places.