24 lines
426 B
JSON
24 lines
426 B
JSON
{
|
|
"llvm-target": "avr",
|
|
"build-tags": ["avr", "avrtiny", "baremetal", "linux", "arm"],
|
|
"goos": "linux",
|
|
"goarch": "arm",
|
|
"gc": "conservative",
|
|
"linker": "ld.lld",
|
|
"scheduler": "none",
|
|
"rtlib": "compiler-rt",
|
|
"libc": "picolibc",
|
|
"default-stack-size": 256,
|
|
"cflags": [
|
|
"-Werror"
|
|
],
|
|
"ldflags": [
|
|
"-T", "targets/avrtiny.ld",
|
|
"--gc-sections"
|
|
],
|
|
"extra-files": [
|
|
"targets/avrtiny.S"
|
|
],
|
|
"gdb": ["avr-gdb"]
|
|
}
|