From 7cbe5f11e04907b0a45f963869aed44b3b406a39 Mon Sep 17 00:00:00 2001 From: Eggert Jung Date: Fri, 18 Apr 2025 23:24:12 +0200 Subject: [PATCH] use cgdb --- tools/qemu.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/qemu.mk b/tools/qemu.mk index 284f6c4..af6fbff 100644 --- a/tools/qemu.mk +++ b/tools/qemu.mk @@ -59,7 +59,7 @@ kvm: all # Execute Qemu with activated GDB stub and directly connect GDB to the spawned Qemu. gdb: all - ${VERBOSE} $(GDB) "$(DBGKERNEL)" \ + ${VERBOSE} cgdb -d $(GDB) "$(DBGKERNEL)" \ -ex "set arch $(DBGARCH)" \ -ex "target remote | exec $(QEMU) -gdb stdio $(QEMUKERNEL) -smp $(QEMUCPUS) -S $(QEMUFLAGS) $(DBGFLAGS)"