mirror of
https://github.com/lowRISC/ibex.git
synced 2025-04-20 11:57:12 -04:00
[dv] Verilator unused parameter handling
Forward a currently unused parameter. Disable error exit for warnings. Newer Verilator versions will fail if for example parameters are unused. As this test does not cover everything, allow those warning to be printed, but not fail the build.
This commit is contained in:
parent
ca31ca43f3
commit
d315c38527
2 changed files with 2 additions and 0 deletions
|
@ -59,6 +59,7 @@ module tb_cs_registers #(
|
|||
/* verilator lint_off PINMISSING */
|
||||
ibex_cs_registers #(
|
||||
.DbgTriggerEn (DbgTriggerEn),
|
||||
.ICache (ICache),
|
||||
.MHPMCounterNum (MHPMCounterNum),
|
||||
.MHPMCounterWidth (MHPMCounterWidth),
|
||||
.PMPEnable (PMPEnable),
|
||||
|
|
|
@ -124,3 +124,4 @@ targets:
|
|||
- '-CFLAGS "-std=c++14 -Wall -DTOPLEVEL_NAME=tb_cs_registers -DVM_TRACE_FMT_FST -g"'
|
||||
- '-LDFLAGS "-pthread -lutil -lelf"'
|
||||
- "-Wall"
|
||||
- '-Wno-fatal' # Do not fail on (style) issues, only warn about them.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue