From 5e8a7469284d41f71305e38fff0af08550964ea3 Mon Sep 17 00:00:00 2001 From: Hansung Kim Date: Wed, 12 Jun 2024 09:56:25 -0700 Subject: [PATCH] make: Remove obsolete args rom dependency --- common.mk | 2 +- variables.mk | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/common.mk b/common.mk index 7c9bd0c0..539beae9 100644 --- a/common.mk +++ b/common.mk @@ -22,7 +22,7 @@ HELP_COMPILATION_VARIABLES += \ " MFC_BASE_LOWERING_OPTIONS = override lowering options to pass to the MLIR FIRRTL compiler" \ " ASPECTS = comma separated list of Chisel aspect flows to run (e.x. chipyard.upf.ChipTopUPFAspect)" -EXTRA_GENERATOR_REQS ?= $(BOOTROM_TARGETS) $(ARGSROM_TARGETS) +EXTRA_GENERATOR_REQS ?= $(BOOTROM_TARGETS) EXTRA_SIM_CXXFLAGS ?= EXTRA_SIM_LDFLAGS ?= EXTRA_SIM_SOURCES ?= diff --git a/variables.mk b/variables.mk index 9878590a..7f6f4523 100644 --- a/variables.mk +++ b/variables.mk @@ -210,10 +210,6 @@ EXT_INCDIRS ?= BOOTROM_FILES ?= bootrom.rv64.img bootrom.rv32.img bootrom.radiance.rv32.img BOOTROM_TARGETS ?= $(addprefix $(build_dir)/, $(BOOTROM_FILES)) -# custom *.bin argument files needed for Radiance -ARGSROM_FILES ?= args.bin op_a.bin op_b.bin -ARGSROM_TARGETS ?= $(addprefix $(base_dir)/sims/, $(ARGSROM_FILES)) - # files that contain lists of files needed for VCS or Verilator simulation SIM_FILE_REQS = sim_files ?= $(build_dir)/sim_files.f