Skip to content
Permalink
Browse files
Merge pull request #9359 from leoetlino/gdbstub-on
Fix GDBStub build and build it by default
  • Loading branch information
JosJuice committed Dec 26, 2020
2 parents dcc313f + 0aadb9f commit ce599f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
@@ -50,7 +50,7 @@ option(ENCODE_FRAMEDUMPS "Encode framedumps in AVI format" ON)

option(ENABLE_GPROF "Enable gprof profiling (must be using Debug build)" OFF)
option(FASTLOG "Enable all logs" OFF)
option(GDBSTUB "Enable gdb stub for remote debugging." OFF)
option(GDBSTUB "Enable gdb stub for remote debugging." ON)
option(OPROFILING "Enable profiling" OFF)

# TODO: Add DSPSpy
@@ -240,7 +240,7 @@ static void gdb_read_command()
cmd_len = 0;
memset(cmd_bfr, 0, sizeof cmd_bfr);

const u8 c = gdb_read_byte();
u8 c = gdb_read_byte();
if (c == '+')
{
// ignore ack

0 comments on commit ce599f9

Please sign in to comment.