tinygo/targets/cortex-m.json
2018-11-28 17:34:59 +01:00

19 строки
394 Б
JSON

{
"build-tags": ["tinygo.arm", "js", "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"
}