Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to GCC 10.2 #7607

Merged
merged 2 commits into from
Sep 24, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
178 changes: 89 additions & 89 deletions package/package_esp8266com_index.template.json

Large diffs are not rendered by default.

Binary file modified tools/sdk/lib/libbearssl.a
Binary file not shown.
Binary file modified tools/sdk/lib/libgcc.a
Binary file not shown.
Binary file modified tools/sdk/lib/libhal.a
Binary file not shown.
Binary file modified tools/sdk/lib/liblwip2-1460-feat.a
Binary file not shown.
Binary file modified tools/sdk/lib/liblwip2-1460.a
Binary file not shown.
Binary file modified tools/sdk/lib/liblwip2-536-feat.a
Binary file not shown.
Binary file modified tools/sdk/lib/liblwip2-536.a
Binary file not shown.
Binary file modified tools/sdk/lib/liblwip6-1460-feat.a
Binary file not shown.
Binary file modified tools/sdk/lib/liblwip6-536-feat.a
Binary file not shown.
Binary file modified tools/sdk/lib/libstdc++-exc.a
Binary file not shown.
Binary file modified tools/sdk/lib/libstdc++.a
Binary file not shown.
Binary file modified tools/sdk/libc/xtensa-lx106-elf/lib/crt0.o
Binary file not shown.
Binary file modified tools/sdk/libc/xtensa-lx106-elf/lib/libc.a
Binary file not shown.
Binary file modified tools/sdk/libc/xtensa-lx106-elf/lib/libg.a
Binary file not shown.
Binary file modified tools/sdk/libc/xtensa-lx106-elf/lib/libm.a
Binary file not shown.
8 changes: 8 additions & 0 deletions tools/sdk/lwip2/include/glue.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,17 @@ author: d. gauchard
extern "C"
{
#endif

#ifdef LWIP14GLUE
#define __IPV4_ADDR_H__ // prevents inclusion of ipv4_addr.h meant for lwip2
#define ipv4_addr ip_addr // structures are identical, ipv4_addr is unknown with lwIP-1.4
#include <lwip/ip_addr.h> // formerly official struct ip_info, disappeared in lwIP-v2
#endif

#include "ets_sys.h"
#include "osapi.h"
#include "user_interface.h"

#ifdef __cplusplus
}
#endif
Expand Down
2 changes: 1 addition & 1 deletion tools/sdk/lwip2/include/lwip-git-hash.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// generated by makefiles/make-lwip2-hash
#ifndef LWIP_HASH_H
#define LWIP_HASH_H
#define LWIP_HASH_STR "STABLE-2_1_2_RELEASE/glue:1.2-31-g3798bf0"
#define LWIP_HASH_STR "STABLE-2_1_2_RELEASE/glue:1.2-34-gf56e795"
#endif // LWIP_HASH_H
3 changes: 3 additions & 0 deletions tools/sdk/lwip2/include/lwipopts.h
Original file line number Diff line number Diff line change
Expand Up @@ -3619,6 +3619,9 @@ struct netif;
//#define LWIP_ERR_T s8
LWIP_ERR_T lwip_unhandled_packet (struct pbuf* pbuf, struct netif* netif);

// called when STA OR AP is set up or down
void netif_status_changed (struct netif*);

/*
--------------------------------------------------
----------------- TIME-WAIT tweak ----------------
Expand Down