We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The "Building against system LLDB" instructions didn't work out-of-the-box on M1 macOS Monterey 12.4 with XCode 13.2.1.
Here's a known-good sequence of instructions. Pretty similar to the existing "Building against custom LLDB" instructions.
git clone --depth 1 https://github.com/llvm/llvm-project.git cd llvm-project # I think you can remove CMAKE_INSTALL_PREFIX because we do not attempt installation cmake \ -DLLDB_USE_SYSTEM_DEBUGSERVER=ON \ -DLLDB_INCLUDE_TESTS=OFF \ -DCMAKE_BUILD_TYPE=Release \ -DLLVM_ENABLE_PROJECTS='lldb;clang' \ -DCMAKE_INSTALL_PREFIX=prefix \ -S llvm -B build -G Ninja cmake --build build --target lldb cd .. git clone --depth 1 https://github.com/lldb-tools/lldb-mi.git cd lldb-mi cmake -DLLVM_DIR=../llvm-project/build/lib/cmake/llvm . cmake --build . # enjoy your new lldb-mi ./src/lldb-mi --help
The text was updated successfully, but these errors were encountered:
My mac is M1 macOS Monterey 12.4, but I can build against system lldb..🤔
Sorry, something went wrong.
Did you manage to build a working version? #101
No branches or pull requests
The "Building against system LLDB" instructions didn't work out-of-the-box on M1 macOS Monterey 12.4 with XCode 13.2.1.
Here's a known-good sequence of instructions. Pretty similar to the existing "Building against custom LLDB" instructions.
The text was updated successfully, but these errors were encountered: