aboutsummaryrefslogtreecommitdiffhomepage
path: root/targets/cortex-m.json
blob: f4f50783c6c507f9e396f03050017b207bb2b0a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
	"build-tags": ["tinygo.arm", "js", "wasm"],
	"goos": "js",
	"goarch": "wasm",
	"compiler": "clang-7",
	"gc": "marksweep",
	"linker": "arm-none-eabi-ld",
	"rtlib": "compiler-rt",
	"cflags": [
		"-Oz",
		"-mthumb",
		"-fshort-enums",
		"-fno-exceptions", "-fno-unwind-tables",
		"-ffunction-sections", "-fdata-sections"
	],
	"ldflags": [
		"--gc-sections"
	],
	"objcopy": "arm-none-eabi-objcopy",
	"gdb": "arm-none-eabi-gdb"
}