https://github.com/spinalhdl/vexriscvsocsoftware
https://github.com/spinalhdl/vexriscvsocsoftware
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/spinalhdl/vexriscvsocsoftware
- Owner: SpinalHDL
- Created: 2017-06-16T18:05:38.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2021-12-15T08:29:37.000Z (over 4 years ago)
- Last Synced: 2025-03-04T07:51:20.085Z (over 1 year ago)
- Language: C
- Size: 1.12 MB
- Stars: 26
- Watchers: 8
- Forks: 16
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Need the prebuild GCC from https://www.sifive.com/products/tools/ => SiFive GNU Embedded Toolchain
The makefiles are expecting to find this prebuild version in /opt/riscv/__contentOfThisPreBuild__
```sh
wget https://static.dev.sifive.com/dev-tools/riscv64-unknown-elf-gcc-20171231-x86_64-linux-centos6.tar.gz
tar -xzvf riscv64-unknown-elf-gcc-20171231-x86_64-linux-centos6.tar.gz
sudo mv riscv64-unknown-elf-gcc-20171231-x86_64-linux-centos6 /opt/riscv64-unknown-elf-gcc-20171231-x86_64-linux-centos6
sudo mv /opt/riscv64-unknown-elf-gcc-20171231-x86_64-linux-centos6 /opt/riscv
echo 'export PATH=/opt/riscv/bin:$PATH' >> ~/.bashrc
```