Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes for release 2 5 5 #91

Merged
merged 8 commits into from
Nov 23, 2023
3 changes: 1 addition & 2 deletions cumulus/src/designflow/pnrcheck.py
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Saved me from a lot of debugging :D

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Debugging is our burden !

Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ def mkRuleSet ( callerGlobals, vlogDesignName, flags=0, extraRtlDepends=[], extr

if not (flags & NoSynthesis):
ruleYosys = Yosys .mkRule( 'yosys', vlogDesignName+'.v' )
ruleB2V = Blif2Vst.mkRule( 'b2v' , [ vhdlDesignName+'.vst'
, vlogDesignName+'.spi' ]
ruleB2V = Blif2Vst.mkRule( 'b2v' , [ vhdlDesignName+'.vst' ]
, [ruleYosys]
, flags=0 )
rtlDepends = [ ruleB2V ]
Expand Down
Loading