-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Extend documentation with bender, banshee and spike dependency
- Loading branch information
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,3 +74,32 @@ Install the required packages in the currently active virtual environment: | |
```shell | ||
pip install -r python-requirements.txt | ||
``` | ||
|
||
## Dependencies | ||
|
||
This repository has a couple of tool dependencies: | ||
|
||
- Dependency management tool `bender`: | ||
```bash | ||
# Bender tool | ||
cargo install bender --version 0.23.2 | ||
``` | ||
- Instruction-accurate simulator `banshee`: | ||
```bash | ||
# Banshee | ||
git clone [email protected]:pulp-platform/banshee.git --recurse-submodules | ||
# install in normal mode | ||
cargo install --path banshee -f | ||
# or install Banshee with `debug` and `trace` enabled | ||
cargo install --debug --path banshee -f | ||
``` | ||
- Snitch-ISA-aware `spike-dasm` version: | ||
```bash | ||
git clone https://github.com/huettern/riscv-isa-sim | ||
cd riscv-isa-sim | ||
mkdir build | ||
cd build | ||
../configure | ||
make spike-dasm | ||
# TODO: add binary location to $PATH | ||
``` |