1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-12 01:53:07 +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

@ -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
```