使用 fpga-zynq 存储库(已弃用)和最新的 Rocket 芯片生成器存储库

Work with fpga-zynq repository (deprecated) with the most recent repository of Rocket chip generator

fpga-zynq 存储库 (https://github.com/ucb-bar/fpga-zynq) 有一些 git 子模块。其中之一是 Rocket-chip 子模块,但是 Rocket-chip 的那个 repo 已经过时了,所以我尝试用最新的 repo 编译火箭。当我这样做时,我遇到了一个问题,如下图所示:

[错误] (运行-main-0) java.lang.NoClassDefFoundError: firrtl/util/BackendCompilationUtilities$class

Image with the error situation.

有人有解决办法吗?

按照这些说明操作:

sudo apt install default-jdk (if you are using ubuntu)

apt install openjdk-8-jre-headless

都对我有用

检查你的系统是什么 JDK 版本 运行:

javac -version

如果不同则 JDK8 你应该手动设置它:

sudo update-alternatives --config java
There are 3 choices for the alternative java (providing /usr/bin/java).

Selection      Path                                             Priority   Status
------------------------------------------------------------
* 0            /usr/lib/jvm/java-11-openjdk-amd64/bin/java      1111      auto mode
  1            /usr/lib/jvm/java-11-openjdk-amd64/bin/java      1111      manual mode
  2            /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java   1081      manual mode

  Press <enter> to keep the current choice[*], or type selection number:

它对我有用。祝你好运