mirror of
https://github.com/rdolbeau/VexRiscvBPluginGenerator.git
synced 2025-04-18 18:44:42 -04:00
missing file
This commit is contained in:
parent
e91a02bb45
commit
63aa6881f4
1 changed files with 14 additions and 0 deletions
14
r5.mk
Normal file
14
r5.mk
Normal file
|
@ -0,0 +1,14 @@
|
|||
## B Toolchain so we get some automatic B generation
|
||||
R5B_TOOLCHAIN=/opt/riscv64b/
|
||||
R5B_GCC=$(R5B_TOOLCHAIN)/bin/riscv64-unknown-elf-gcc
|
||||
R5B_OPT=-Os -march=rv32imab -mabi=ilp32 -I.
|
||||
|
||||
## Buildroot toolchain for linking and having up-to-date libraries and systems calls
|
||||
## Requires enabling C++ in buildroot with e.g.
|
||||
## # BR2_INSTALL_LIBSTDCPP=y
|
||||
## # BR2_TOOLCHAIN_BUILDROOT_CXX=y
|
||||
R5IMA_TOOLCHAIN=/home/dolbeau2/LITEX/buildroot-rv32/output/host
|
||||
R5IMA_GCC=$(R5IMA_TOOLCHAIN)/bin/riscv32-buildroot-linux-gnu-gcc
|
||||
R5IMA_GXX=$(R5IMA_TOOLCHAIN)/bin/riscv32-buildroot-linux-gnu-g++
|
||||
R5IMA_OPT=-Os -march=rv32ima -mabi=ilp32 -I.
|
||||
R5IMA_STRIP=$(R5IMA_TOOLCHAIN)/riscv32-buildroot-linux-gnu-strip
|
Loading…
Add table
Reference in a new issue