diff options
author | Prashanth Mundkur <prashanth.mundkur@gmail.com> | 2016-07-21 17:54:34 -0700 |
---|---|---|
committer | Andrew Waterman <waterman@eecs.berkeley.edu> | 2016-07-21 17:54:34 -0700 |
commit | cd6dec56d6f6ead58ec009df0f0394136bbc4fa5 (patch) | |
tree | 45c915c8834e4a4b0e0d4eef2edec1a2eab37ec7 /README.md | |
parent | 7272e3f9bc7ce1b397db74bd120e0aeb56a6e872 (diff) | |
download | riscv-pk-cd6dec56d6f6ead58ec009df0f0394136bbc4fa5.zip riscv-pk-cd6dec56d6f6ead58ec009df0f0394136bbc4fa5.tar.gz riscv-pk-cd6dec56d6f6ead58ec009df0f0394136bbc4fa5.tar.bz2 |
Update the readme with 32-bit info. (#29)
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -22,9 +22,17 @@ install path, and that the riscv-gnu-toolchain package is installed. $ mkdir build $ cd build - $ ../configure --prefix=$RISCV/riscv64-unknown-elf --host=riscv64-unknown-elf + $ ../configure --prefix=$RISCV --host=riscv64-unknown-elf $ make $ make install Alternatively, the GNU/Linux toolchain may be used to build this package, by setting `--host=riscv64-unknown-linux-gnu`. + +By default, 64-bit (RV64) versions of `pk` and `bbl` are built. To +built 32-bit (RV32) versions, supply a `--enable-32bit` flag to the +configure command. + +The `install` step installs 64-bit build products into +`$RISCV/riscv64-unknown-elf`, and 32-bit versions into +`$RISCV/riscv32-unknown-elf`. |