-
Notifications
You must be signed in to change notification settings - Fork 3k
Netsocket/lwIP Stack: Remove support for ARM Compiler 5 #12671
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
Netsocket/lwIP Stack: Remove support for ARM Compiler 5 #12671
Conversation
@hugueskamba, thank you for your changes. |
Test run: FAILEDSummary: 2 of 7 test jobs failed Failed test jobs:
|
@0xc0170 I think there might be a |
@@ -117,10 +115,7 @@ typedef int_fast32_t int_fast24_t; | |||
|
|||
/* C11's "alignas" macro, emulated for integer expressions if necessary */ | |||
#ifndef __alignas_is_defined | |||
#if defined __CC_ARM || defined __TASKING__ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be
#if defined __TASKING__
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
@@ -149,11 +144,7 @@ typedef int_fast32_t int_fast24_t; | |||
* static int foo(void) MAYBE_UNUSED; | |||
* ~~~ | |||
*/ | |||
#if defined __CC_ARM || defined __GNUC__ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be
#if defined __GNUC__
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
ARM Compiler 5 is no longer actively supported and was superseded in Mbed OS by ARM Compiler 6.
ec33c1d
to
209f1e6
Compare
@ARMmbed/mbed-os-ipcore Please review |
CI started |
Test run: FAILEDSummary: 1 of 7 test jobs failed Failed test jobs:
|
I'll restart CI later today |
CI started |
Test run: FAILEDSummary: 2 of 3 test jobs failed Failed test jobs:
|
CI restarted |
Test run: SUCCESSSummary: 7 of 7 test jobs passed |
@artokin @kjbracey-arm Can you review? Once approved, this will be merged. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay for Mbed OS - I guess we're also okay for doing this for Nanostack libservice upstream?
Summary of changes
ARM Compiler 5 is no longer actively supported and was superseded in
Mbed OS by ARM Compiler 6.
Impact of changes
Breaking change: The binary generated from ARM Compiler 5 cannot be relied on as support has been dropped.
Migration actions required
Use Arm Compiler 6.
Documentation
N/A
Pull request type
Test results
Reviewers
@AnttiKauppila @evedon @bulislaw