diff --git a/src/DebugServer/Gdb/CommandPackets/CommandPacket.cpp b/src/DebugServer/Gdb/CommandPackets/CommandPacket.cpp index 45edcad8..c1b6f501 100644 --- a/src/DebugServer/Gdb/CommandPackets/CommandPacket.cpp +++ b/src/DebugServer/Gdb/CommandPackets/CommandPacket.cpp @@ -42,6 +42,12 @@ namespace Bloom::DebugServer::Gdb::CommandPackets return; } + if (packetString.find("vMustReplyEmpty") == 0) { + Logger::debug("Handling vMustReplyEmpty"); + debugSession.connection.writePacket(EmptyResponsePacket()); + return; + } + if (packetString.find("qAttached") == 0) { Logger::debug("Handling qAttached"); debugSession.connection.writePacket(ResponsePacket(std::vector({1})));