[Lldb-commits] [lldb] 411bf38 - [lldb-dap] Include npm install in the extension installation steps (#92028)
via lldb-commits
lldb-commits at lists.llvm.org
Wed May 15 11:44:16 PDT 2024
Author: Walter Erquinigo
Date: 2024-05-15T14:44:12-04:00
New Revision: 411bf385ba27f15145c635c7d8ff2701fe8de5b9
URL: https://github.com/llvm/llvm-project/commit/411bf385ba27f15145c635c7d8ff2701fe8de5b9
DIFF: https://github.com/llvm/llvm-project/commit/411bf385ba27f15145c635c7d8ff2701fe8de5b9.diff
LOG: [lldb-dap] Include npm install in the extension installation steps (#92028)
Otherwise the build step fails due to missing dependencies.
Added:
Modified:
lldb/tools/lldb-dap/README.md
Removed:
################################################################################
diff --git a/lldb/tools/lldb-dap/README.md b/lldb/tools/lldb-dap/README.md
index 274b1519208a1..16ce4672be71c 100644
--- a/lldb/tools/lldb-dap/README.md
+++ b/lldb/tools/lldb-dap/README.md
@@ -46,6 +46,7 @@ Installing the plug-in is very straightforward and involves just a few steps.
```bash
cd /path/to/lldb/tools/lldb-dap
+npm install
npm run package # This also compiles the extension.
npm run vscode-install
```
@@ -69,6 +70,7 @@ no effect.
```bash
# Bump version in package.json
cd /path/to/lldb/tools/lldb-dap
+npm install
npm run package
npm run vscode-install
```
More information about the lldb-commits
mailing list