Skip to content

Commit

Permalink
Merge branch 'master' into qflow-1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
RTimothyEdwards committed Mar 5, 2021
2 parents 6b6f902 + 67b1dfe commit 3b6064c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.94
1.4.95
6 changes: 4 additions & 2 deletions scripts/yosys.sh
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,8 @@ EOF

# Note: Remove backslashes and brackets to avoid problems with tcsh
set yerrors = `eval ${bindir}/yosys -s ${modulename}.ys |& sed -e "/\\/s#\\#/#g" \
-e "/\[/s/\[//g" -e "/\]/s/\]//g" | grep ERROR`
-e "/\[/s/\[//g" -e "/\]/s/\]//g" | grep ERROR | \
sed 's/^.*\(ERROR.*\).*$/\1/'`
set yerrcnt = `echo $yerrors | wc -c`

if ($yerrcnt > 1) then
Expand Down Expand Up @@ -377,7 +378,8 @@ EOF

# Note: Remove backslashes and brackets to avoid problems with tcsh
set yerrors = `eval ${bindir}/yosys -s ${modulename}.ys |& sed -e "/\\/s#\\#/#g" \
-e "/\[/s/\[//g" -e "/\]/s/\]//g" | grep ERROR`
-e "/\[/s/\[//g" -e "/\]/s/\]//g" | grep ERROR | \
sed 's/^.*\(ERROR.*\).*$/\1/'`
set yerrcnt = `echo $yerrors | wc -c`

if ($yerrcnt > 1) then
Expand Down

0 comments on commit 3b6064c

Please sign in to comment.