From 8da31764b9afcabfeb305dad771d3aefa429b963 Mon Sep 17 00:00:00 2001 From: Idan Horowitz Date: Sat, 1 Apr 2023 22:37:52 +0300 Subject: [PATCH] Meta: Enable asm-view symbol demangling in the gdb kernel debug script This makes sure that symbol names are demangled in the assembly view. --- Meta/debug-kernel.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/Meta/debug-kernel.sh b/Meta/debug-kernel.sh index 6fc94adf42..63e8126b0b 100755 --- a/Meta/debug-kernel.sh +++ b/Meta/debug-kernel.sh @@ -57,6 +57,7 @@ exec $SERENITY_KERNEL_DEBUGGER \ -ex "set confirm on" \ -ex "set arch $gdb_arch" \ -ex "set print frame-arguments none" \ + -ex "set print asm-demangle on" \ -ex "target remote ${gdb_host}:1234" \ -ex "source $SCRIPT_DIR/serenity_gdb.py" \ -ex "layout asm" \