From 86a920a3f755e3e1666cd18ebc93c4e8dc507d55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98yvind=20Harboe?= Date: Sat, 5 Oct 2024 09:03:10 +0200 Subject: [PATCH] makefile: add arguments to openroad splah screen to have info in log MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Øyvind Harboe --- flow/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flow/Makefile b/flow/Makefile index feba08f274..793f45533e 100644 --- a/flow/Makefile +++ b/flow/Makefile @@ -618,7 +618,7 @@ do-$(1): $(OBJECTS_DIR)/copyright.txt @echo Running $(3).tcl, stage $(1) @(set -eo pipefail; \ trap 'mv $(LOG_DIR)/$(1).tmp.log $(LOG_DIR)/$(1).log' EXIT; \ - $(OPENROAD_EXE) -exit -no_init $(SCRIPTS_DIR)/noop.tcl 2>&1 >$(LOG_DIR)/$(1).tmp.log; \ + $(OPENROAD_EXE) $(OPENROAD_ARGS) -exit $(SCRIPTS_DIR)/noop.tcl 2>&1 >$(LOG_DIR)/$(1).tmp.log; \ $(TIME_CMD) $(OPENROAD_CMD) -no_splash $(SCRIPTS_DIR)/$(3).tcl -metrics $(LOG_DIR)/$(1).json 2>&1 | \ tee -a $(abspath $(LOG_DIR)/$(1).tmp.log)) endef