Skip to content

Commit 56f93e6

Browse files
committed
test
1 parent aca6e56 commit 56f93e6

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

yosys/scripts/yosys_synthesis.tcl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ source $script_dir/init_tech.tcl
2323

2424
yosys plugin -i slang.so
2525

26+
puts [pwd]
27+
2628
# read design (default: top_design=croc_chip, sv_flist=croc.flist)
2729
# see yosys/configuration.mk
2830
yosys read_slang --top $top_design -f $sv_flist \

yosys/yosys.mk

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,12 @@ $(NETLIST) $(NETLIST_DEBUG):
3131
TMP="$(YOSYS_TMP)" \
3232
BUILD="$(YOSYS_OUT)" \
3333
REPORTS="$(YOSYS_REPORTS)" \
34-
$(YOSYS) -c $(YOSYS_DIR)/scripts/yosys_synthesis.tcl \
35-
2>&1 | TZ=UTC gawk '{ print strftime("[%Y-%m-%d %H:%M %Z]"), $$0 }' \
36-
| tee "$(YOSYS_DIR)/$(TOP_DESIGN).log" \
37-
| gawk -f $(YOSYS_DIR)/scripts/filter_output.awk;
34+
$(YOSYS) -c $(YOSYS_DIR)/scripts/yosys_synthesis.tcl
35+
36+
37+
# 2>&1 | TZ=UTC gawk '{ print strftime("[%Y-%m-%d %H:%M %Z]"), $$0 }' \
38+
# | tee "$(YOSYS_DIR)/$(TOP_DESIGN).log" \
39+
# | gawk -f $(YOSYS_DIR)/scripts/filter_output.awk;
3840

3941

4042
ys_clean:

0 commit comments

Comments
 (0)