[Lldb-commits] [lldb] [lldb-dap][vscode][windows] check if Python is installed properly before starting lldb-dap (PR #181124)
Adrian Prantl via lldb-commits
lldb-commits at lists.llvm.org
Fri May 1 09:55:34 PDT 2026
================
@@ -671,6 +668,10 @@ int main(int argc, char *argv[]) {
#ifdef _WIN32
if (input_args.hasArg(OPT_check_python)) {
+#ifndef LLDB_ENABLE_PYTHON
+ llvm::outs() << "lldb-dap was not built with Python support" << '\n';
----------------
adrian-prantl wrote:
this should be errs() I think?
https://github.com/llvm/llvm-project/pull/181124
More information about the lldb-commits
mailing list