mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-03 02:27:48 +00:00
4568de556e
These routines are necessary to compile testdata/float.go.
20 lines
478 B
JSON
20 lines
478 B
JSON
{
|
|
"inherits": ["xtensa"],
|
|
"cpu": "esp32",
|
|
"build-tags": ["esp32", "esp"],
|
|
"scheduler": "tasks",
|
|
"linker": "xtensa-esp32-elf-ld",
|
|
"default-stack-size": 2048,
|
|
"cflags": [
|
|
"-mcpu=esp32"
|
|
],
|
|
"rtlib": "compiler-rt",
|
|
"linkerscript": "targets/esp32.ld",
|
|
"extra-files": [
|
|
"src/device/esp/esp32.S",
|
|
"src/internal/task/task_stack_esp32.S"
|
|
],
|
|
"binary-format": "esp32",
|
|
"flash-command": "esptool.py --chip=esp32 --port {port} write_flash 0x1000 {bin} -ff 80m -fm dout"
|
|
}
|