mirror of
https://github.com/openhwgroup/cvw
synced 2025-01-23 13:04:28 +00:00
27 lines
1.3 KiB
Bash
27 lines
1.3 KiB
Bash
|
#!/bin/bash
|
||
|
|
||
|
# wally-setup.sh
|
||
|
# David_Harris@hmc.edu and kekim@hmc.edu 1 December 2021
|
||
|
# Set up tools for riscv-wally
|
||
|
|
||
|
echo "Executing wally-setup.sh"
|
||
|
|
||
|
# Path to RISC-V Tools
|
||
|
export RISCV=/opt/riscv # change this if you installed the tools in a different location
|
||
|
|
||
|
# Tools
|
||
|
export PATH=$RISCV/riscv-gnu-toolchain/bin:$RISCV/riscv-gnu-toolchain/riscv64-unknown-elf/bin:$PATH # GCC tools
|
||
|
export PATH=~/riscv-wally/bin:$PATH # exe2memfile; change this if riscv-wally isn't at your home directory
|
||
|
export PATH=/cad/mentor/questa_sim-2021.2_1/questasim/bin:$PATH # Change this for your path to Modelsim
|
||
|
export PATH=/usr/local/bin/verilator:$PATH # Change this for your path to Verilator
|
||
|
export LD_LIBRARY_PATH=$RISCV/riscv-gnu-toolchain/lib:$RISCV/riscv-gnu-toolchain/riscv64-unknown-elf/lib:$LD_LIBRARY_PATH
|
||
|
|
||
|
export MGLS_LICENSE_FILE=1717@solidworks.eng.hmc.edu # *** is this the right license server now
|
||
|
|
||
|
# Imperas; *** remove if not using
|
||
|
PATH=/cad/riscv/imperas-riscv-tests/riscv-ovpsim-plus/bin/Linux64:/cad/riscv/imperas-riscv-tests/riscv-ovpsim/bin/Liux64:$PATH # *** maybe take this out based on Imperas
|
||
|
export LD_LIBRARY_PATH=/cad/imperas/Imperas.20200630/bin/Linux64:$LD_LIBRARY_PATH # remove if no imperas
|
||
|
IMPERAS_HOME=/cad/imperas/Imperas.20200630
|
||
|
source $IMPERAS_HOME/bin/setup.sh
|
||
|
setupImperas $IMPERAS_HOME
|