You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The generated_src built using https://github.com/ucb-bar/chipyard.git repo has a issue. Noticed this issue with a fresh checkout this morning.
The following file has a issue at line 4794.
./generated-src/chipyard.harness.TestHarness.RocketConfig/chipyard.harness.TestHarness.RocketConfig.debug/VTestDriver__Trace__2__Slow.cpp
Error with make run-binary-debug BINARY=test.riscv is as follows:
VTestDriver__Trace__2__Slow.cpp: In function 'void VTestDriver___024root__trace_init_sub__TOP__4(VTestDriver___024root*, VerilatedVcd*)':
VTestDriver__Trace__2__Slow.cpp:4794:131: error: expected unqualified-id before ',' token
4794 | tracep->declQuad(c+47834,0,"channel",-1, VerilatedTraceSigDirection::NONE, VerilatedTraceSigKind::VAR, VerilatedTraceSigType::, false,-1, 63,0);
| ^
make[1]: *** [/home/dgangana/rocketchip/chipyard/.conda-env/share/verilator/include/verilated.mk:275: VTestDriver__Trace__2__Slow.o] Error 1
Fix tried which worked is as follows:
Changed the line from
tracep->declQuad(c+47834,0,"channel",-1, VerilatedTraceSigDirection::NONE, VerilatedTraceSigKind::VAR, VerilatedTraceSigType::, false,-1, 63,0);
to
tracep->declQuad(c+47834,0,"channel",-1, VerilatedTraceSigDirection::NONE, VerilatedTraceSigKind::VAR, VerilatedTraceSigType::LOGIC, false,-1, 63,0);
Please do the needful.
The text was updated successfully, but these errors were encountered:
Type of issue: bug report
The generated_src built using https://github.com/ucb-bar/chipyard.git repo has a issue. Noticed this issue with a fresh checkout this morning.
The following file has a issue at line 4794.
./generated-src/chipyard.harness.TestHarness.RocketConfig/chipyard.harness.TestHarness.RocketConfig.debug/VTestDriver__Trace__2__Slow.cpp
Error with make run-binary-debug BINARY=test.riscv is as follows:
VTestDriver__Trace__2__Slow.cpp: In function 'void VTestDriver___024root__trace_init_sub__TOP__4(VTestDriver___024root*, VerilatedVcd*)':
VTestDriver__Trace__2__Slow.cpp:4794:131: error: expected unqualified-id before ',' token
4794 | tracep->declQuad(c+47834,0,"channel",-1, VerilatedTraceSigDirection::NONE, VerilatedTraceSigKind::VAR, VerilatedTraceSigType::, false,-1, 63,0);
| ^
make[1]: *** [/home/dgangana/rocketchip/chipyard/.conda-env/share/verilator/include/verilated.mk:275: VTestDriver__Trace__2__Slow.o] Error 1
Fix tried which worked is as follows:
Changed the line from
tracep->declQuad(c+47834,0,"channel",-1, VerilatedTraceSigDirection::NONE, VerilatedTraceSigKind::VAR, VerilatedTraceSigType::, false,-1, 63,0);
to
tracep->declQuad(c+47834,0,"channel",-1, VerilatedTraceSigDirection::NONE, VerilatedTraceSigKind::VAR, VerilatedTraceSigType::LOGIC, false,-1, 63,0);
Please do the needful.
The text was updated successfully, but these errors were encountered: