mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-04 19:17:47 +00:00
26 lines
473 B
JSON
26 lines
473 B
JSON
{
|
|
"build-tags": ["avr", "baremetal", "linux", "arm"],
|
|
"goos": "linux",
|
|
"goarch": "arm",
|
|
"compiler": "clang",
|
|
"gc": "conservative",
|
|
"linker": "llvm-build.master/bin/ld.lld",
|
|
"scheduler": "none",
|
|
"rtlib": "compiler-rt",
|
|
"libc": "picolibc",
|
|
"cflags": [
|
|
"--target=avr-atmel-none",
|
|
"-g",
|
|
"-Werror",
|
|
"-Qunused-arguments"
|
|
],
|
|
"ldflags": [
|
|
"-T", "targets/avr.ld",
|
|
"--gc-sections"
|
|
],
|
|
"extra-files": [
|
|
"src/runtime/scheduler_avr.S"
|
|
],
|
|
"gdb": "avr-gdb"
|
|
}
|