added shared constants file list of includes

This commit is contained in:
Kip Macsai-Goren 2021-06-04 17:05:47 -04:00
parent 7e41b17e65
commit 318a547531

View File

@ -7,7 +7,7 @@ verilator=`which verilator`
basepath=$(dirname $0)
for config in rv64ic rv32ic; do
echo "$config linting..."
if !($verilator --lint-only "$@" --top-module wallypipelinedsoc "-I$basepath/config/$config" $basepath/src/*/*.sv); then
if !($verilator --lint-only "$@" --top-module wallypipelinedsoc "-I$basepath/config/shared" "-I$basepath/config/$config" $basepath/src/*/*.sv --relative-includes); then
echo "Exiting after $config lint due to errors or warnings"
exit 1
fi