
This commit does two things: * It adds support for the GOOS and GOARCH environment variables. They fall back to runtime.GO* only when not available. * It adds support for 3 new architectures: 386, arm, and arm64. For now, this is Linux-only.
12 строки
214 Б
JSON
12 строки
214 Б
JSON
{
|
|
"build-tags": ["avr", "js", "wasm"],
|
|
"goos": "js",
|
|
"goarch": "wasm",
|
|
"compiler": "avr-gcc",
|
|
"linker": "avr-gcc",
|
|
"objcopy": "avr-objcopy",
|
|
"ldflags": [
|
|
"-T", "targets/avr.ld",
|
|
"-Wl,--gc-sections"
|
|
]
|
|
}
|