mirror of
https://github.com/stenzek/duckstation.git
synced 2026-02-04 05:04:33 +00:00
[PR #1244] [MERGED] GDB server stub for remote debugging (using upstream debugging interfaces) #402
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/stenzek/duckstation/pull/1244
Author: @boricj
Created: 12/17/2020
Status: ✅ Merged
Merged: 12/25/2020
Merged by: @stenzek
Base:
master← Head:gdbserver📝 Commits (4)
096e467StringUtil: Add base support and hexadecimal functions76b73d3Settings: Add GDB server settings57cbe96Core: Implement GDB protocolbf277ecQt: Implement GDB server📊 Changes
18 files changed (+591 additions, -18 deletions)
View changed files
📝
src/common/string_util.cpp(+28 -0)📝
src/common/string_util.h(+29 -18)📝
src/core/CMakeLists.txt(+2 -0)📝
src/core/core.vcxproj(+2 -0)📝
src/core/core.vcxproj.filters(+2 -0)➕
src/core/gdb_protocol.cpp(+319 -0)➕
src/core/gdb_protocol.h(+13 -0)📝
src/core/settings.cpp(+2 -0)📝
src/core/settings.h(+3 -0)📝
src/duckstation-qt/CMakeLists.txt(+4 -0)📝
src/duckstation-qt/duckstation-qt.vcxproj(+6 -0)📝
src/duckstation-qt/duckstation-qt.vcxproj.filters(+6 -0)➕
src/duckstation-qt/gdbconnection.cpp(+82 -0)➕
src/duckstation-qt/gdbconnection.h(+24 -0)➕
src/duckstation-qt/gdbserver.cpp(+35 -0)➕
src/duckstation-qt/gdbserver.h(+19 -0)📝
src/duckstation-qt/mainwindow.cpp(+11 -0)📝
src/duckstation-qt/mainwindow.h(+4 -0)📄 Description
Just like #1192, but rebased on top of upstream's debugging interfaces and without watchpoints.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.