slightly more path independence for using verilator

This commit is contained in:
bbracker 2021-05-24 18:11:56 -04:00
parent 920dd7bd8d
commit f755827c90

View File

@ -1,7 +1,8 @@
#!/bin/bash #!/bin/bash
# check for warnings in Verilog code # check for warnings in Verilog code
# The verilator lint tool is faster and better than Modelsim so it is best to run this first. # 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) basepath=$(dirname $0)
for config in rv64ic rv32ic; do for config in rv64ic rv32ic; do