Skip to content

Commit faf59f5

Browse files
Update to GCC 10.2 (#7607)
1 parent c24109f commit faf59f5

20 files changed

+102
-91
lines changed

package/package_esp8266com_index.template.json

+89-89
Large diffs are not rendered by default.

tools/sdk/lib/libbearssl.a

-16.5 KB
Binary file not shown.

tools/sdk/lib/libgcc.a

-1.99 KB
Binary file not shown.

tools/sdk/lib/libhal.a

0 Bytes
Binary file not shown.

tools/sdk/lib/liblwip2-1460-feat.a

1.23 KB
Binary file not shown.

tools/sdk/lib/liblwip2-1460.a

1.23 KB
Binary file not shown.

tools/sdk/lib/liblwip2-536-feat.a

1.23 KB
Binary file not shown.

tools/sdk/lib/liblwip2-536.a

1.23 KB
Binary file not shown.

tools/sdk/lib/liblwip6-1460-feat.a

1.19 KB
Binary file not shown.

tools/sdk/lib/liblwip6-536-feat.a

1.19 KB
Binary file not shown.

tools/sdk/lib/libstdc++-exc.a

1.76 KB
Binary file not shown.

tools/sdk/lib/libstdc++.a

1.77 KB
Binary file not shown.
0 Bytes
Binary file not shown.
-1.24 KB
Binary file not shown.
-1.24 KB
Binary file not shown.
0 Bytes
Binary file not shown.

tools/sdk/lwip2/include/glue.h

+8
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,17 @@ author: d. gauchard
4848
extern "C"
4949
{
5050
#endif
51+
52+
#ifdef LWIP14GLUE
53+
#define __IPV4_ADDR_H__ // prevents inclusion of ipv4_addr.h meant for lwip2
54+
#define ipv4_addr ip_addr // structures are identical, ipv4_addr is unknown with lwIP-1.4
55+
#include <lwip/ip_addr.h> // formerly official struct ip_info, disappeared in lwIP-v2
56+
#endif
57+
5158
#include "ets_sys.h"
5259
#include "osapi.h"
5360
#include "user_interface.h"
61+
5462
#ifdef __cplusplus
5563
}
5664
#endif
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// generated by makefiles/make-lwip2-hash
22
#ifndef LWIP_HASH_H
33
#define LWIP_HASH_H
4-
#define LWIP_HASH_STR "STABLE-2_1_2_RELEASE/glue:1.2-31-g3798bf0"
4+
#define LWIP_HASH_STR "STABLE-2_1_2_RELEASE/glue:1.2-34-gf56e795"
55
#endif // LWIP_HASH_H

tools/sdk/lwip2/include/lwipopts.h

+3
Original file line numberDiff line numberDiff line change
@@ -3619,6 +3619,9 @@ struct netif;
36193619
//#define LWIP_ERR_T s8
36203620
LWIP_ERR_T lwip_unhandled_packet (struct pbuf* pbuf, struct netif* netif);
36213621

3622+
// called when STA OR AP is set up or down
3623+
void netif_status_changed (struct netif*);
3624+
36223625
/*
36233626
--------------------------------------------------
36243627
----------------- TIME-WAIT tweak ----------------

0 commit comments

Comments
 (0)