From 62597d5f4e18644206d28381ea6f686a25dabec7 Mon Sep 17 00:00:00 2001 From: momo5502 Date: Sun, 19 Jan 2025 13:23:21 +0100 Subject: [PATCH] Don't support vCont right now --- src/gdb-stub/gdb_stub.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gdb-stub/gdb_stub.cpp b/src/gdb-stub/gdb_stub.cpp index 453426ae..85b0cf66 100644 --- a/src/gdb-stub/gdb_stub.cpp +++ b/src/gdb-stub/gdb_stub.cpp @@ -205,7 +205,8 @@ namespace gdb_stub if (name == "Cont?") { - connection.send_reply("vCont;s;c"); + // connection.send_reply("vCont;s;c"); + connection.send_reply({}); } else if (name == "Cont;s") {