Skip to content

Commit 9089688

Browse files
chirag-silabspull[bot]
authored andcommitted
[Silabs] [SiWx917] Addressing build failures on 917 SOC due to GCC update (#26266)
* addressing build failures on 917 SOC due to GCC update * updating the matter support pointer
1 parent 0f65b27 commit 9089688

File tree

4 files changed

+7
-1
lines changed

4 files changed

+7
-1
lines changed

examples/platform/silabs/SiWx917/BUILD.gn

+3
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,8 @@ config("siwx917-common-config") {
186186
if (siwx917_commissionable_data) {
187187
defines += [ "SIWX917_USE_COMISSIONABLE_DATA=1" ]
188188
}
189+
190+
ldflags = [ "-Wl,--no-warn-rwx-segment" ]
189191
}
190192

191193
config("silabs-wifi-config") {
@@ -238,6 +240,7 @@ source_set("siwx917-common") {
238240
sources = [
239241
"${silabs_common_plat_dir}/LEDWidget.cpp",
240242
"${silabs_common_plat_dir}/heap_4_silabs.c",
243+
"${silabs_common_plat_dir}/syscalls_stubs.cpp",
241244
"${wifi_sdk_dir}/dhcp_client.cpp",
242245
"${wifi_sdk_dir}/ethernetif.cpp",
243246
"${wifi_sdk_dir}/lwip_netif.cpp",

src/platform/silabs/SiWx917/wifi/dhcp_client.h

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
#if LWIP_IPV4 && LWIP_DHCP
1919

2020
#pragma once
21+
#include <stdint.h>
2122
#ifdef __cplusplus
2223
extern "C" {
2324
#endif

src/platform/silabs/SiWx917/wifi/wfx_msgs.h

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717

1818
#ifndef _WFX_MSGS_H_
1919
#define _WFX_MSGS_H_
20+
21+
#include <stdint.h>
2022
/*
2123
* Taken from sl_wfx firmware - so I can re-use.
2224
* I need to do a better job than to use this stuff

0 commit comments

Comments
 (0)