英文:
chisel 5.0.0-RC1 and chiseltest
问题
我正在尝试升级一个Chisel 3.6.0项目到5.0.0-RC1,根据文档的说明,似乎不建议在新项目中使用chiseltest。出于一种直觉,我尝试添加了一个依赖项org.chipsalliance:chiseltest
(不知道有更好的方法,只是更新了先前的版本),当然这并没有起作用。
请问升级这样的项目有推荐的方法吗?是否有关于这个主题的任何有用文档(因为我还没有找到任何)?
英文:
I'm attempting to upgrade a chisel 3.6.0 project to 5.0.0-RC1, and according to the docs it looks as though chiseltest is not recommended for new projects. On a hunch I did also try to add a dependency on org.chipsalliance:chiseltest
(not knowing any better, just updating the previous version), and ofc that didn't work.
What is the recommended way to upgrade such a project? Are there any helpful docs on the subject that I've missed (seeing as I haven't found any)?
答案1
得分: 2
以下是已翻译的内容:
截止到几天前,在 chiseltest 中已经出现了支持 chisel 5.0.0 的 PR(感谢 Gastón Schabas 在 此评论 中指出这一点)。
在我个人的情况下,目前为止,只需更新依赖项,指向 org.chipsalliance:chisel 5.0.0
和 edu.berkely.cs:chiseltest 5.0-SNAPSHOT
。
英文:
As of a couple days ago, a PR has appeared for chisel 5.0.0 support in chiseltest (thanks to Gastón Schabas for pointing this out in this comment).
In my particular case, at the time of writing, it's enough to simply update the dependencies to point to org.chipsalliance:chisel 5.0.0
and edu.berkely.cs:chiseltest 5.0-SNAPSHOT
.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论