[Lldb-commits] [lldb] [lldb/Commands] Add `scripting template list` command with auto discovery (PR #97273)

Alex Langford via lldb-commits lldb-commits at lists.llvm.org
Mon Jul 22 13:26:56 PDT 2024


================
@@ -329,6 +330,13 @@ class DynamicLoader : public PluginInterface {
   /// safe to call certain APIs or SPIs.
   virtual bool IsFullyInitialized() { return true; }
 
+  /// Return the `start` function \b symbol in the dynamic loader module.
+  /// This is the symbol the process will begin executing with
+  /// `process launch --stop-at-entry`.
+  virtual std::optional<lldb_private::Symbol> GetStartSymbol() {
----------------
bulbazord wrote:

You'll probably need to rebase this change right?

https://github.com/llvm/llvm-project/pull/97273


More information about the lldb-commits mailing list