From eb42be6dc44c69f4177ba14ef880929697aa177c Mon Sep 17 00:00:00 2001 From: Quinten Kock Date: Tue, 8 Dec 2020 01:37:19 +0100 Subject: [PATCH] Sleep before opening GDB to allow it to connect reliably --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 94e5a9c..a3652f3 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,7 @@ bochs: $(KERNEL_HDD) ext/bochsrc rm bochsout.txt gdb: - QEMUFLAGS="-s -S" $(MAKE) run & gdb -x ext/gdbinit + QEMUFLAGS="-s -S" $(MAKE) run & (sleep 1; gdb -x ext/gdbinit) ext/limine/limine-install: $(MAKE) -C ext/limine/ limine-install