[Lldb-commits] [lldb] Implement reportsOriginalInstructions GDB remote feature (PR #201176)

Jason Molenda via lldb-commits lldb-commits at lists.llvm.org
Tue Jun 9 15:48:20 PDT 2026


================
@@ -3703,7 +3703,7 @@ rnb_err_t RNBRemote::HandlePacket_qSupported(const char *p) {
   std::stringstream reply;
   reply << "qXfer:features:read+;PacketSize=" << std::hex << max_packet_size
         << ";";
-  reply << "qEcho+;native-signals+;";
+  reply << "qEcho+;native-signals+;reportsOriginalInstructions+;";
----------------
jasonmolenda wrote:

Oh sorry, I misunderstood, this PR is going to have every stub that masks the breakpoint instructions add `reportsOriginalInstructions+` to its qSupported list.  Oh I don't think this is going to work very well.

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


More information about the lldb-commits mailing list