diff options
author | Friedrich Beckmann <friedrich.beckmann@hs-augsburg.de> | 2022-07-25 17:55:39 +0200 |
---|---|---|
committer | Friedrich Beckmann <friedrich.beckmann@hs-augsburg.de> | 2022-07-25 17:55:39 +0200 |
commit | 3fff6023602822531efdae30bc8ebf862967f1ef (patch) | |
tree | 16028102b8d850f8ab3115d28a8539ca6bc5f51d /VexRiscvSocSoftware/README.md |
Initial Commit
Diffstat (limited to 'VexRiscvSocSoftware/README.md')
-rw-r--r-- | VexRiscvSocSoftware/README.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/VexRiscvSocSoftware/README.md b/VexRiscvSocSoftware/README.md new file mode 100644 index 0000000..96ea608 --- /dev/null +++ b/VexRiscvSocSoftware/README.md @@ -0,0 +1,11 @@ +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 +``` |