
- Use compiler-rt and picolibc instead of avr-libc. - Use ld.lld instead of avr-ld (or avr-gcc). This makes it much easier to get started with TinyGo on AVR because installing these extra tools (gcc-avr, avr-libc) can be a hassle. It also opens the door for future improvements such as ThinLTO. There is a code size increase but I think it's worth it in the long run. The code size increase can hopefully be reduced with improvements to the LLVM AVR backend and to compiler-rt.
10 строки
291 Б
JSON
10 строки
291 Б
JSON
{
|
|
"inherits": ["atmega328p"],
|
|
"build-tags": ["arduino_nano"],
|
|
"ldflags": [
|
|
"--defsym=_bootloader_size=512",
|
|
"--defsym=_stack_size=512"
|
|
],
|
|
"flash-command": "avrdude -c arduino -p atmega328p -b 57600 -P {port} -U flash:w:{hex}:i",
|
|
"emulator": "simavr -m atmega328p -f 16000000 {}"
|
|
}
|