================ @@ -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 ---------------- DavidSpickett wrote:
Do this in a follow up but, `develope` -> `develop`. https://github.com/llvm/llvm-project/pull/69264 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits