Makefile: replace tee with -l option of yosys

This commit is contained in:
Zihao Yu 2023-07-28 12:16:53 +08:00
parent 981f68b419
commit e4e9909aa8
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ init:
syn: $(NETLIST_V)
$(NETLIST_V): $(RTL_FILES) yosys.tcl
mkdir -p $(@D)
echo tcl yosys.tcl $(DESIGN) \"$(RTL_FILES)\" $(NETLIST_V) | yosys -s - | tee $(@D)/yosys.log
echo tcl yosys.tcl $(DESIGN) \"$(RTL_FILES)\" $(NETLIST_V) | yosys -l $(@D)/yosys.log -s -
sta: $(TIMING_RPT)
$(TIMING_RPT): $(SDC_FILE) $(NETLIST_V)