1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-21 10:26:06 +03:00
david gauchard 370e75cb47 multi-mss menus for lwip2, remove lwip xcc variant, lwip2 readme, updates and fixes (#4039)
lwip2 updates:
  > multi-mss makefile
  > forwardported espconn (no multicast yet)
  > restore max 3 ntp servers for configTime() coherency
  > unchain seldom chained pbufs
  > dns cache name length back to (256->48->) 128
  > use sntp_stop/start() when dhcp address got
  > fix netif's hostname glue-handling
  > forwardported ping from lwip1.4
fix #3970
fix maybe #3963
2017-12-29 00:48:31 -03:00
..
2016-03-29 17:48:37 +03:00
2017-10-15 01:40:10 -05:00
2017-10-08 05:00:08 +08:00
2016-06-23 17:27:57 +08:00
2017-10-15 01:40:10 -05:00
2017-10-15 01:40:10 -05:00
2017-10-15 01:40:10 -05:00
2017-02-03 04:21:20 +03:00
2015-05-18 16:04:30 +03:00
2017-10-15 01:40:10 -05:00
2017-10-15 14:59:37 +08:00
2017-10-15 01:40:10 -05:00
2017-10-31 02:05:40 +08:00
2017-10-15 01:40:10 -05:00
2017-10-15 01:40:10 -05:00
2017-10-31 02:05:40 +08:00
2015-07-04 09:45:05 +02:00
2017-10-15 01:40:10 -05:00
2017-10-15 01:40:10 -05:00
2017-10-15 01:40:10 -05:00
2017-10-31 02:05:40 +08:00
2017-10-15 01:40:10 -05:00

Updating SDK libraries

After updating SDK libraries to a new version, do the following changes.

Remove mem_manager.o from libmain.a to use custom heap implementation, and time.o to fix redefinition of time-related functions:

xtensa-lx106-elf-ar -d libmain.a mem_manager.o
xtensa-lx106-elf-ar -d libmain.a time.o

Updating libstdc++

After building gcc using crosstool-NG, get compiled libstdc++ and remove some objects:

xtensa-lx106-elf-ar d libstdc++.a pure.o
xtensa-lx106-elf-ar d libstdc++.a vterminate.o
xtensa-lx106-elf-ar d libstdc++.a guard.o
xtensa-lx106-elf-ar d libstdc++.a functexcept.o
xtensa-lx106-elf-ar d libstdc++.a del_op.o
xtensa-lx106-elf-ar d libstdc++.a del_opv.o
xtensa-lx106-elf-ar d libstdc++.a new_op.o
xtensa-lx106-elf-ar d libstdc++.a new_opv.o