[lldb] [llvm] [lldb] Add a GitHub bug reporter (PR #206607)

Jonas Devlieghere via llvm-commits llvm-commits at lists.llvm.org
Mon Jun 29 16:57:04 PDT 2026


================
@@ -0,0 +1,33 @@
+//===----------------------------------------------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLDB_SOURCE_PLUGINS_BUGREPORTER_GITHUB_BUGREPORTERGITHUB_H
+#define LLDB_SOURCE_PLUGINS_BUGREPORTER_GITHUB_BUGREPORTERGITHUB_H
+
+#include "lldb/Core/BugReporter.h"
+
+namespace lldb_private {
+
+/// Opens a pre-filled github.com/llvm/llvm-project "new issue" page. The body
+/// carries a short summary and points at the on-disk bundle to attach, since
+/// large artifacts cannot travel in the URL.
+class BugReporterGitHub : public BugReporter {
----------------
JDevlieghere wrote:

@medismailben I renamed the plugin per my earlier suggestion, which avoids the churn of renaming the base class, the plugin directory and the None implementation. I also think it would be good to document the new policy on https://lldb.llvm.org/resources/contributing.html so everyone's on the same page going forward. 

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


More information about the llvm-commits mailing list