1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-27 21:16:50 +03:00

Remove mem_manager.o from libmain.a (#1630)

This commit is contained in:
Ivan Grokhotkov 2016-02-15 00:24:19 +03:00
parent 4c75793508
commit 30b2a99b3f
3 changed files with 7 additions and 5 deletions

View File

@ -37,6 +37,11 @@ size_t ICACHE_RAM_ATTR xPortGetFreeHeapSize(void)
return umm_free_heap_size();
}
size_t ICACHE_RAM_ATTR xPortWantedSizeAlign(size_t size)
{
return (size + 3) & ~((size_t) 3);
}
void system_show_malloc(void)
{
umm_info(NULL, 1);

View File

@ -3,11 +3,8 @@
After updating SDK libraries to a new version, do the following changes.
1. Weaken symbols from mem_manager.o to use custom heap implementation
1. Remove mem_manager.o from libmain.a 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
xtensa-lx106-elf-ar -d libmain.a mem_manager.o
```

Binary file not shown.