From bebba3876e190f75b564734eb21f644dcf090d9f Mon Sep 17 00:00:00 2001 From: Sebastian Sumpf Date: Wed, 3 Mar 2021 14:48:45 +0100 Subject: [PATCH] run boot_dir hw: build debug ELF binaries again - build debug version of core and bootstrap found under _var/run/.core_ (.bootstrap). This is a regression when switching from object to archive library linkage of core. fixes #4027 --- tool/run/boot_dir/hw | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/run/boot_dir/hw b/tool/run/boot_dir/hw index 01d4261ec6..d94ca8dbea 100644 --- a/tool/run/boot_dir/hw +++ b/tool/run/boot_dir/hw @@ -72,7 +72,7 @@ proc run_boot_dir {binaries} { set bootstrap_obj bootstrap-hw-[board].o # create core and bootstrap binary without modules for debugging - if {[file exists debug/core-hw-[board].o]} { + if {[file exists debug/core-hw-[board].a]} { build_core debug/core-hw-[board].a {} [run_dir].core [core_link_address] build_core [run_dir]/genode/$bootstrap_obj {} [run_dir].bootstrap [bootstrap_link_address] }