[Lldb-commits] [lldb] [lldb/Plugins] Introduce Scripted Platform Plugin (PR #99814)
Med Ismail Bennani via lldb-commits
lldb-commits at lists.llvm.org
Tue Aug 6 22:25:07 PDT 2024
================
@@ -180,7 +184,19 @@ class CommandObjectPlatformSelect : public CommandObjectParsed {
m_interpreter, ArchSpec(), select, error, platform_arch));
if (platform_sp) {
GetDebugger().GetPlatformList().SetSelectedPlatform(platform_sp);
-
+ OptionGroupPythonClassWithDict &script_class_opts =
----------------
medismailben wrote:
@clayborg I considered that but that would mean that the platform is in an invalid state after construction and it would require the user to call that accessor in order to "complete" its construction. I think adding an overload with an extra `SBError&` would be fine here.
https://github.com/llvm/llvm-project/pull/99814
More information about the lldb-commits
mailing list