aboutsummaryrefslogtreecommitdiffhomepage
path: root/targets/avr.json
blob: b7f87ca42b87413dae016847cff22c7ee96b3c6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
	"build-tags": ["avr", "baremetal", "linux", "arm"],
	"goos": "linux",
	"goarch": "arm",
	"compiler": "avr-gcc",
	"gc": "conservative",
	"linker": "avr-gcc",
	"scheduler": "none",
	"cflags": [
		"-gdwarf-4"
	],
	"ldflags": [
		"-T", "targets/avr.ld",
		"-Wl,--gc-sections"
	],
	"extra-files": [
		"src/runtime/scheduler_avr.S"
	],
	"gdb": "avr-gdb"
}