1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-27 18:02:17 +03:00

Use umm_malloc for heap management

This commit is contained in:
Ivan Grokhotkov
2016-02-04 13:14:47 +03:00
parent 2e1be32825
commit 339140c756
11 changed files with 2479 additions and 16 deletions

13
tools/sdk/lib/README.md Normal file
View File

@ -0,0 +1,13 @@
## 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
```

Binary file not shown.