slightly more path independence for using verilator

This commit is contained in:
bbracker 2021-05-24 18:11:56 -04:00
parent d7405e476e
commit 82a6ee4c0e

View File

@ -1,7 +1,8 @@
#!/bin/bash
# check for warnings in Verilog code
# The verilator lint tool is faster and better than Modelsim so it is best to run this first.
verilator="/usr/local/bin/verilator"
export PATH=$PATH:/usr/local/bin/
verilator=`which verilator`
basepath=$(dirname $0)
for config in rv64ic rv32ic; do