Files
chipyard/scripts/firesim-setup.sh
2022-09-21 22:45:13 -07:00

17 lines
314 B
Bash
Executable File

#!/usr/bin/env bash
# Sets up FireSim for use as a library within Chipyard
set -e
set -o pipefail
RDIR=$(git rev-parse --show-toplevel)
cd "$RDIR"
# Reenable the FireSim submodule
git config --unset submodule.sims/firesim.update || true
pushd sims/firesim
./build-setup.sh "$@" --library --skip-validate
popd