Replies: 12 comments 26 replies
-
|
Beta Was this translation helpful? Give feedback.
-
I don't know if it's really the reason why it worked but I just used chocolatey to install LLVM and it somehow gave me a check. I was actually trying to install codelldb since I have nothing to lead me on where or how I can do lldb-vscode.
OS: Windows 11 |
Beta Was this translation helpful? Give feedback.
-
ame i llvm |
Beta Was this translation helpful? Give feedback.
-
for macOS (using homebrew): brew install llvm
ln -s $(brew --prefix)/opt/llvm/bin/lldb-vscode $(brew --prefix)/bin/ The second line is required to get lldb-vscode into your homebrew PATH without exposing the whole lldb installation as it would clash with xcode commandline tools. |
Beta Was this translation helpful? Give feedback.
-
For Debian/Ubuntu, I needed to install and further link to get things working: sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" # Instructions from https://apt.llvm.org/
cd $(dirname $(which lldb-17))
sudo ln -s lldb-vscode-17 lldb-vscode |
Beta Was this translation helpful? Give feedback.
-
lldb-vscode is part of the lldb-15 package in stable as well as testing. hope that helps! |
Beta Was this translation helpful? Give feedback.
-
@David-Else - great job keeping the Wiki article clean and incorporating all the different Linux distributions as they pop-up. I was wondering if we should grab some external reference like this one from Microsoft and copy some of the details the wiki is currently missing (as they have the major ones like Ubuntu/RHEL/Centos/etc)? Getting all the various Linux distributions that might have a native lldb package under an umbrella feels a bit like fighting windmills these days. |
Beta Was this translation helpful? Give feedback.
-
Any opensuse user here? How to install it for opensuse? |
Beta Was this translation helpful? Give feedback.
-
But still I don't have lldb vscode |
Beta Was this translation helpful? Give feedback.
-
$ brew info llvm
==> llvm: stable 18.1.4 (bottled), HEAD [keg-only]
Next-gen compiler infrastructure
https://llvm.org/
Installed
/opt/homebrew/Cellar/llvm/18.1.4 (7,721 files, 1.8GB)
Poured from bottle using the formulae.brew.sh API on 2024-05-03 at 22:06:22
From: https://github.com/Homebrew/homebrew-core/blob/HEAD/Formula/l/llvm.rb
$ ls $(brew --prefix)/opt/llvm/bin/llvm-dap
ls: /opt/homebrew/opt/llvm/bin/llvm-dap: No such file or directory
$ ls $(brew --prefix)/opt/llvm/bin/llvm-vscode
ls: /opt/homebrew/opt/llvm/bin/llvm-vscode: No such file or directory Any idea why? |
Beta Was this translation helpful? Give feedback.
-
I had the problem today & fixed it with creating a symlink (suggested here: #9964) lldb-vscode was renamed to lldb-dap, so most likely you will find /usr/bin/lldb-dap in your bin folder after installing lldb (version 18 or later) This will create a symlink: |
Beta Was this translation helpful? Give feedback.
-
Hi, as of now sudo dnf install lldb Now this should be auto available in the helix configuration which you can check using the following command: hx --health rust
|
Beta Was this translation helpful? Give feedback.
-
hx --health
rust ✓ rust-analyzer ✘ lldb-vscode
I just finded this codelldb-x86_64-linux.vsix
Beta Was this translation helpful? Give feedback.
All reactions