From 92792d9cac999e8c011cde2442b2964d7e828944 Mon Sep 17 00:00:00 2001 From: Simon Date: Sun, 27 Apr 2025 20:59:48 +0200 Subject: [PATCH] added the qemu tools thingie to gitignore since llvm-gdb is outdated and no longer used by the real cool kids --- .gitignore | 1 + tools/qemu.mk | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index d95f4fd..dadc007 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .build* /build* +/tools/qemu.mk diff --git a/tools/qemu.mk b/tools/qemu.mk index af6fbff..c4e57e4 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} cgdb -d $(GDB) "$(DBGKERNEL)" \ + ${VERBOSE} cgdb "$(DBGKERNEL)" \ -ex "set arch $(DBGARCH)" \ -ex "target remote | exec $(QEMU) -gdb stdio $(QEMUKERNEL) -smp $(QEMUCPUS) -S $(QEMUFLAGS) $(DBGFLAGS)"