From 625ea2662d08fe997fbf755579cb3f0a51df11cd Mon Sep 17 00:00:00 2001 From: Rupert Swarbrick Date: Fri, 8 Jan 2021 07:52:17 +0000 Subject: [PATCH] Revert "Clear MAKEFLAGS when running dvsim.py" This reverts commit 31a18ad: the problem that it was working around was fixed in OpenTitan with commit 249a544, vendored into Ibex as b1daf9e. --- dv/uvm/icache/dv/Makefile | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/dv/uvm/icache/dv/Makefile b/dv/uvm/icache/dv/Makefile index 2ec0f1e3..a9a3121e 100644 --- a/dv/uvm/icache/dv/Makefile +++ b/dv/uvm/icache/dv/Makefile @@ -44,11 +44,6 @@ dvsim-mk-args := \ $(waves-arg) $(coverage-arg) $(verbosity-arg) \ $(reseed-arg) $(seed-arg) $(tests-arg) -run-cmd := $(dvsim-py) ibex_icache_sim_cfg.hjson $(dvsim-std-args) $(dvsim-mk-args) - -# Clear MAKEFLAGS when running dvsim.py: it contains an internal call -# to Make and things get confused if they are set. .PHONY: run run: - @echo $(run-cmd) - @env MAKEFLAGS= $(run-cmd) + $(dvsim-py) ibex_icache_sim_cfg.hjson $(dvsim-std-args) $(dvsim-mk-args)