[Lldb-commits] [lldb] [lldb] Improve error message for script commands when there's no interpreter (PR #73321)
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Mon Nov 27 00:16:00 PST 2023
================
@@ -26,17 +26,19 @@ ScriptInterpreterNone::ScriptInterpreterNone(Debugger &debugger)
ScriptInterpreterNone::~ScriptInterpreterNone() = default;
+static const char *no_interpreter_err_msg =
+ "There is no embedded script interpreter. Check that LLDB was built with a "
+ "scripting language enabled.\n";
----------------
DavidSpickett wrote:
Right, this also doesn't imply that not having scripting support is necessarily bad. It's just a choice made at some point.
https://github.com/llvm/llvm-project/pull/73321
More information about the lldb-commits
mailing list