[Lldb-commits] [lldb] [lldb] add stop-at-user-entry option to process launch (PR #67019)
Med Ismail Bennani via lldb-commits
lldb-commits at lists.llvm.org
Fri Sep 29 08:47:04 PDT 2023
=?utf-8?q?José?= L. Junior <jljuniorpb at gmail.com>,
=?utf-8?q?José?= L. Junior <jljuniorpb at gmail.com>,
=?utf-8?q?José?= L. Junior <jljuniorpb at gmail.com>,
=?utf-8?q?José?= L. Junior <jljuniorpb at gmail.com>,
=?utf-8?q?José?= L. Junior <jljuniorpb at gmail.com>,
=?utf-8?q?José?= L. Junior <jljuniorpb at gmail.com>,
=?utf-8?q?José?= L. Junior <jljuniorpb at gmail.com>
Message-ID:
In-Reply-To: <llvm/llvm-project/pull/67019/lldb at github.com>
================
@@ -27,6 +27,8 @@ class ObjCPlusPlusLanguage : public Language {
return lldb::eLanguageTypeObjC_plus_plus;
}
+ const char *GetUserEntryPointName() const override { return "main"; }
----------------
medismailben wrote:
Unrelated to this PR but it would have been nice if this class was derived from the `CPlusPlus` and/or `ObjC` one so you wouldn't have to re-implement the same method here. @Michael137 do you think that it could be a useful refactor ? Or may be we should introduce a `C` language base class that every thing derives from ?
https://github.com/llvm/llvm-project/pull/67019
More information about the lldb-commits
mailing list