From 1e9fb334a0b95de7651ded66524604b0c21f199b Mon Sep 17 00:00:00 2001 From: stnolting Date: Fri, 11 Oct 2024 18:29:06 +0200 Subject: [PATCH] [sw/common] ELF file is required for gdb target --- sw/common/common.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sw/common/common.mk b/sw/common/common.mk index 18915fd53..0e0d89ea4 100644 --- a/sw/common/common.mk +++ b/sw/common/common.mk @@ -313,7 +313,7 @@ elf_sections: $(APP_ELF) # ----------------------------------------------------------------------------- # Run GDB # ----------------------------------------------------------------------------- -gdb: +gdb: $(APP_ELF) @$(GDB) $(APP_ELF) $(GDB_ARGS) # -----------------------------------------------------------------------------