How to resolve the linter error #1965
-
With latest commit facing linter errors.
I am trying to run Earlier it is not failed during synthesis, but with latest OpenLane failing. Which configuration variable to use to resolve this linter error?
@kareefardi can you help me to resolve this? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
set ::env(VERILOG_FILES) "\
$script_dir/../../verilog/rtl/aes/generated/*.v" This should have never worked. It probably did in Yosys, but it won't work with the linter. Add a glob manually: set ::env(VERILOG_FILES) [glob $::env(DESIGN_DIR)/../../verilog/rtl/aes/generated/*.v] |
Beta Was this translation helpful? Give feedback.
-
In addition to donn's comment, |
Beta Was this translation helpful? Give feedback.
-
Thanks.. It works with |
Beta Was this translation helpful? Give feedback.
This should have never worked. It probably did in Yosys, but it won't work with the linter. Add a glob manually: