If you don't have spike-disasm in your path, your path is dumped

to stdout by this line every time you do anything in the entire repo.
This commit is contained in:
Ben Keller 2015-09-03 15:36:11 -07:00
parent e6b6ff5a1d
commit 8e9c15c10d
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ default_submodules = . junctions uncore hardfloat rocket zscale
chisel_srcs = $(addprefix $(base_dir)/,$(addsuffix /$(src_path)/*.scala,$(default_submodules)))
disasm := 2>
which_disasm := $(shell which spike-dasm)
which_disasm := $(shell which spike-dasm 2> /dev/null)
ifneq ($(which_disasm),)
disasm := 3>&1 1>&2 2>&3 | $(which_disasm) $(DISASM_EXTENSION) >
endif