Open arunlee77 opened 1 year ago
As you can see in your log, you do not have vcd2vpd installed.
You may see https://groups.google.com/g/chipyard/c/fKKWHTS0uhk/m/pY2AoVovAgAJ
Based on the information you provided, it appears that the command make -j2 run-asm-tests-debug
is encountering an error related to the vcd2vpd
command not being found.
To address this issue, you can try the following steps:
Ensure that the vcd2vpd
command is installed on your system. You can do this by running which vcd2vpd
in the terminal. If the command is not found, you may need to install it.
If vcd2vpd
is not installed, you can typically find it in the Verilator package. Install Verilator using the appropriate package manager for your system.
After installing Verilator, make sure the installation directory is included in your system's PATH environment variable.
Once you have verified that vcd2vpd
is installed and accessible, try running the make -j2 run-asm-tests-debug
command again.
Type of issue: bug report
Impact: unknown
Development Phase: request
Other information
Trying follow the READMe to get the c based simulator working.
If the current behavior is a bug, please provide the steps to reproduce the problem: Steps to reproduce: rocket-tools: Installed and RISCV path set.
rocket-chip:
make debug is success
What is the current behavior?
But make -j2 run-asm-tests-debug gets stuck with the below error message.
Please tell us about your environment:
version:
25e2c63567689ebe1fc5e60fdfe3375a8dba071c
OS: aravind2@aravind2-HP-Compaq-8100-Elite-CMT-PC:~/work/rocket-chip/emulator$ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 20.04.5 LTS Release: 20.04 Codename: focal aravind2@aravind2-HP-Compaq-8100-Elite-CMT-PC:~/work/rocket-chip/emulator$
`
What is the use case for changing the behavior?