Implement GDB/LLDB compatible server #3

Merged
SonicSwordcane merged 33 commits from debugger into main 2025-01-19 00:13:43 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit f1c5571aa6 - Show all commits

View File

@ -210,7 +210,7 @@ impl GdbConnection {
res res
} else if req.match_str("qSupported:") { } else if req.match_str("qSupported:") {
self.response() self.response()
.write_str("multiprocess+;swbreak+;vContSupported+;PacketSize=10000") .write_str("multiprocess+;swbreak+;vContSupported+;PacketSize=10000;SupportedWatchpointTypes=x86_64,aarch64-bas,aarch64-mask")
} else if req } else if req
.match_some_str([ .match_some_str([
"QThreadSuffixSupported", "QThreadSuffixSupported",