aboutsummaryrefslogtreecommitdiff
path: root/VexRiscvSocSoftware/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'VexRiscvSocSoftware/README.md')
-rw-r--r--VexRiscvSocSoftware/README.md11
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
+```