From 2f5680b7a618335a67a98e7d756d94a69700325f Mon Sep 17 00:00:00 2001 From: David Harris Date: Tue, 23 Apr 2024 10:18:00 -0700 Subject: [PATCH] Silencing new version of Verilator in lint --- bin/lint-wally | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/lint-wally b/bin/lint-wally index 08d189ec7..d1fdc7dcc 100755 --- a/bin/lint-wally +++ b/bin/lint-wally @@ -26,7 +26,7 @@ fi for config in ${configs[@]}; do # echo "$config linting..." - if !($verilator --no-timing --lint-only --top-module wallywrapper "-I$basepath/config/shared" "-I$basepath/config/$config" "-I$basepath/config/deriv/$config" $basepath/src/cvw.sv $basepath/testbench/wallywrapper.sv $basepath/src/*/*.sv $basepath/src/*/*/*.sv --relative-includes ); then + if !($verilator --no-timing --lint-only --quiet --top-module wallywrapper "-I$basepath/config/shared" "-I$basepath/config/$config" "-I$basepath/config/deriv/$config" $basepath/src/cvw.sv $basepath/testbench/wallywrapper.sv $basepath/src/*/*.sv $basepath/src/*/*/*.sv --relative-includes ); then if [ "$1" == "-nightly" ]; then echo -e "${RED}$config failed lint${NC}" fails=$((fails+1))