-
Notifications
You must be signed in to change notification settings - Fork 7.7k
Changes required for SDK 0.18 for testing using SDK 0.17 #93042
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
base: main
Are you sure you want to change the base?
Changes required for SDK 0.18 for testing using SDK 0.17 #93042
Conversation
The following west manifest projects have changed revision in this Pull Request:
⛔ DNM label due to: 2 projects with PR revision Note: This message is automatically posted and updated by the Manifest GitHub Action. |
2db5239
to
0ee55f3
Compare
763b2da
to
d64055d
Compare
@keith-packard This needs a rebase. |
3f2e3bf
to
cdf95d7
Compare
This will now require review from someone at SiLabs, preferably the author of the board support for the affected dev_kit, Martin Hoff martin.hoff@silabs.com |
83ed880
to
babf17a
Compare
A better fix has been merged and the commit in this series dropped. |
Disable the default startup file with -nostartfiles. Signed-off-by: Keith Packard <keithp@keithp.com>
Zephyr replaces the toolchain version of stdint.h to define uint32_t and int32_t as int rather than long. This breaks the ARM MVE intrinics which require uint32_t to be defined as unsigned long. Define 'ZEPHYR_USE_TOOLCHAIN_STDINT_H_' as that causes zephyr_stdint.h to be skipped, ensuring that the normal stdint.h types are used instead. Signed-off-by: Keith Packard <keithp@keithp.com>
Many tests failing for RX, exclude those until the arch stablizes. See zephyrproject-rtos#89839 Signed-off-by: Anas Nashif <anas.nashif@intel.com>
When the target has only a single CPU, this function cannot ever succeed. Skip all of the drama and just return -EINVAL. This makes GCC 14 happy as it doesn't get confused about possible out of bounds access of the soc_cpus_active array. Signed-off-by: Keith Packard <keithp@keithp.com>
This patch (submitted upstream) avoids an incorrect warning generated by gcc 14.3 about array bounds. It should not change the generated code at all. Signed-off-by: Keith Packard <keithp@keithp.com> Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This pulls in a trivial type checking error which gcc 14.3 catches between a function prototype and a definition where a parameter type is declared as a enum by the prototype and uint8_t by the definition. Signed-off-by: Keith Packard <keithp@keithp.com>
babf17a
to
694e1a0
Compare
|
This is the collab-sdk-dev series rebased to a recent main revision and then adapted so that it "should" build using SDK 0.17.