1
0
Fork 0

Update README.md

- Removed instruction to checkout riscv-tests (as they are now globally installed when building the riscv-tools).
- Clarified the riscv-tools set-up information to clarify that the rocket-chip/riscv-tools is the version to build.
This commit is contained in:
Christopher Celio 2016-05-04 16:23:21 -07:00 committed by Andrew Waterman
parent fbff46d27d
commit 3fe00ce32a
1 changed files with 14 additions and 6 deletions

View File

@ -22,18 +22,26 @@ the RISC-V Rocket Core. For more information on Rocket Chip, please consult our
$ git clone https://github.com/ucb-bar/rocket-chip.git
$ cd rocket-chip
$ git submodule update --init
$ cd riscv-tools
$ git submodule update --init --recursive riscv-tests
### Setting up the RISCV environment variable
To build the rocket-chip repository, you must point the RISCV
environment variable to your riscv-tools installation directory. If you
do not yet have riscv-tools installed, please follow the directions in
the
[riscv-tools/README](https://github.com/riscv/riscv-tools/blob/master/README.md).
environment variable to your riscv-tools installation directory.
$ export RISCV=/path/to/riscv/toolchain/installation
The riscv-tools repository is already included in
rocket-chip as a git submodule. You **must** build this version
of riscv-tools:
$ cd rocket-chip/riscv-tools
$ git submodule update --init --recursive
$ export RISCV=/path/to/install/riscv/toolchain
$ ./build.sh
For more information (or if you run into any issues), please consult the
[riscv-tools/README](https://github.com/riscv/riscv-tools/blob/master/README.md).
### Building The Project