mirror of
https://github.com/openhwgroup/cvw.git
synced 2025-04-17 18:44:48 -04:00
61 lines
1.7 KiB
Bash
61 lines
1.7 KiB
Bash
#!/bin/bash
|
|
|
|
# setup.sh
|
|
# David_Harris@hmc.edu and kekim@hmc.edu 1 December 2021
|
|
# Set up tools for cvw
|
|
|
|
# optionally have .bashrc or .bash_profile source this file with
|
|
#if [ -f ~/cvw/setup.sh ]; then
|
|
# source ~/cvw/setup.sh
|
|
#fi
|
|
|
|
# SPDX-License-Identifier: Apache-2.0 WITH SHL-2.1
|
|
|
|
echo "Executing Wally setup.sh"
|
|
|
|
# Path to RISC-V Tools
|
|
if [ -d /opt/riscv ]; then
|
|
export RISCV=/opt/riscv
|
|
elif [ -d ~/riscv ]; then
|
|
export RISCV=~/riscv
|
|
else
|
|
# set the $RISCV directory here and remove the subsequent two lines
|
|
# export RISCV=
|
|
echo "\$RISCV directory not found. Checked /opt/riscv and ~/riscv. Edit setup.sh to point to your custom \$RISCV directory."
|
|
exit 1
|
|
fi
|
|
echo \$RISCV set to "${RISCV}"
|
|
|
|
# Path to Wally repository
|
|
WALLY=$(dirname "${BASH_SOURCE[0]:-$0}")
|
|
export WALLY=$(cd "$WALLY" && pwd)
|
|
echo \$WALLY set to "${WALLY}"
|
|
# utility functions in Wally repository
|
|
export PATH=$WALLY/bin:$PATH
|
|
|
|
# Setup cvw-arch-verif paths
|
|
if [ -e "${WALLY}"/addins/cvw-arch-verif/setup.sh ]; then
|
|
source "${WALLY}"/addins/cvw-arch-verif/setup.sh
|
|
else
|
|
echo "setup.sh not found in \$WALLY/addins/cvw-arch-verif directory. Make sure you cloned the submodules."
|
|
fi
|
|
|
|
# Verilator needs a larger core file size to simulate CORE-V Wally
|
|
ulimit -c 300000
|
|
|
|
# load site licenses and tool locations
|
|
if [ -e "${RISCV}"/site-setup.sh ]; then
|
|
source "${RISCV}"/site-setup.sh
|
|
else
|
|
echo "site-setup.sh not found in \$RISCV directory. Rerun wally-toolchain-install.sh to automatically download it."
|
|
exit 1
|
|
fi
|
|
|
|
if [ ! -e "${WALLY}/.git/hooks/pre-commit" ]; then
|
|
pushd "${WALLY}" || exit 1
|
|
echo "Installing pre-commit hooks"
|
|
pre-commit install
|
|
popd || exit
|
|
fi
|
|
|
|
echo "setup done"
|