Files
tinygo/targets/riscv32.json
T
Ayke van Laethem 878b62bbe8 riscv: switch to tasks-based scheduler
This is only supported for RV32 at the moment. RV64 can be added at a
later time.
2021-10-05 05:52:03 +02:00

16 lines
264 B
JSON

{
"inherits": ["riscv"],
"llvm-target": "riscv32--none",
"build-tags": ["tinygo.riscv32"],
"scheduler": "tasks",
"default-stack-size": 2048,
"cflags": [
"-march=rv32imac",
"-mabi=ilp32"
],
"ldflags": [
"-melf32lriscv"
],
"gdb": ["gdb-multiarch"]
}