[Lldb-commits] [PATCH] D50038: Introduce install-lldb-framework target
Alex Langford via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Jul 30 19:45:54 PDT 2018
xiaobai added a comment.
Using this patch, I was able to build the lldb framework and install it. I configured with:
cmake .. -G Ninja -DCMAKE_BUILD_TYPE=Release -DLLDB_CODESIGN_IDENTITY="" -DLLDB_BUILD_FRAMEWORK=1 -DLLDB_USE_SYSTEM_SIX=1 -DCMAKE_INSTALL_PREFIX="" -DLLVM_TARGETS_TO_BUILD="X86;ARM;AArch64" -DSKIP_DEBUGSERVER=1 -DLLVM_DISTRIBUTION_COMPONENTS="lldb;lldb-framework"
and built with:
DESTDIR=/Users/apl/code/llvm/build/tmp ninja install-distribution
This built and installed lldb at DESTDIR. I used the installed lldb to debug a small test binary.
https://reviews.llvm.org/D50038
More information about the lldb-commits
mailing list