mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-06 12:03:41 +00:00
878b62bbe8
This is only supported for RV32 at the moment. RV64 can be added at a later time.
16 lines
264 B
JSON
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"]
|
|
}
|