19 строки
394 Б
JSON
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"
|
|
}
|