17 lines
314 B
Bash
Executable File
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
|