[llvm] [lldb] Rename lldb-vscode to lldb-dap (PR #69264)

Jonas Devlieghere via llvm-commits llvm-commits at lists.llvm.org
Tue Oct 17 11:04:29 PDT 2023


================
@@ -40,59 +41,59 @@ If you want to make a stand alone plug-in that you can send to others on UNIX
 systems:
 
 ```bash
-mkdir -p ~/llvm-org.lldb-vscode-0.1.0/bin
-cp package.json ~/llvm-org.lldb-vscode-0.1.0
-cd ~/llvm-org.lldb-vscode-0.1.0/bin
-cp /path/to/a/built/lldb-vscode .
+mkdir -p ~/llvm-org.lldb-dap-0.1.0/bin
+cp package.json ~/llvm-org.lldb-dap-0.1.0
+cd ~/llvm-org.lldb-dap-0.1.0/bin
+cp /path/to/a/built/lldb-dap .
 cp /path/to/a/built/liblldb.so .
 ```
 
 If you want to make a stand alone plug-in that you can send to others on macOS
 systems:
 
 ```bash
-mkdir -p ~/llvm-org.lldb-vscode-0.1.0/bin
-cp package.json ~/llvm-org.lldb-vscode-0.1.0
-cd ~/llvm-org.lldb-vscode-0.1.0/bin
-cp /path/to/a/built/lldb-vscode .
+mkdir -p ~/llvm-org.lldb-dap-0.1.0/bin
+cp package.json ~/llvm-org.lldb-dap-0.1.0
+cd ~/llvm-org.lldb-dap-0.1.0/bin
+cp /path/to/a/built/lldb-dap .
 rsync -av /path/to/a/built/LLDB.framework LLDB.framework
 ```
 
 You might need to create additional directories for the `liblldb.so` or
 `LLDB.framework` inside or next to the `bin` folder depending on how the
-[rpath](https://en.wikipedia.org/wiki/Rpath) is set in your `lldb-vscode`
+[rpath](https://en.wikipedia.org/wiki/Rpath) is set in your `lldb-dap`
 binary. By default the `Debug` builds of LLDB usually includes
 the current executable directory in the rpath, so these steps should work for
 most people.
 
-To create a plug-in that symlinks into your `lldb-vscode` in your build
+To create a plug-in that symlinks into your `lldb-dap` in your build
 directory:
 
 ```bash
-mkdir -p ~/llvm-org.lldb-vscode-0.1.0/bin
-cp package.json ~/llvm-org.lldb-vscode-0.1.0
-cd ~/llvm-org.lldb-vscode-0.1.0/bin
-ln -s /path/to/a/built/lldb-vscode
+mkdir -p ~/llvm-org.lldb-dap-0.1.0/bin
+cp package.json ~/llvm-org.lldb-dap-0.1.0
+cd ~/llvm-org.lldb-dap-0.1.0/bin
+ln -s /path/to/a/built/lldb-dap
 ```
 
-This is handy if you want to debug and develope the `lldb-vscode` executable
+This is handy if you want to debug and develope the `lldb-dap` executable
----------------
JDevlieghere wrote:

Given I'm already modifying the line, figured I'd just fix it now. 

https://github.com/llvm/llvm-project/pull/69264


More information about the llvm-commits mailing list