mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-22 21:23:07 +03:00
14 lines
369 B
Markdown
14 lines
369 B
Markdown
## Updating SDK libraries
|
|
|
|
After updating SDK libraries to a new version, do the following changes.
|
|
|
|
|
|
1. Weaken symbols from mem_manager.o to use custom heap implementation
|
|
|
|
```bash
|
|
xtensa-lx106-elf-ar -x libmain.a mem_manager.o
|
|
xtensa-lx106-elf-objcopy --weaken mem_manager.o
|
|
xtensa-lx106-elf-ar -r libmain.a mem_manager.o
|
|
rm mem_manager.o
|
|
```
|