-
Notifications
You must be signed in to change notification settings - Fork 3k
Drivers: Remove support for ARM Compiler 5 #12698
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
Drivers: Remove support for ARM Compiler 5 #12698
Conversation
drivers/MbedCRC.h
Outdated
@@ -644,7 +644,7 @@ class MbedCRC { | |||
} | |||
|
|||
/* Check to see if we can do assembler optimizations */ | |||
#if ((defined __GNUC__ || defined __clang__) && !defined __CC_ARM) && \ | |||
#if ((defined __GNUC__ || defined __clang__)) && \ |
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.
One set of parenthesis can be removed.
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.
@hugueskamba, thank you for your changes. |
ARM Compiler 5 is no longer actively supported and was superseded in Mbed OS by ARM Compiler 6.
66e537a
to
e435738
Compare
Ci started |
Test run: FAILEDSummary: 2 of 6 test jobs failed Failed test jobs:
|
Restarted client test The test will be restarted later today |
Both restarted |
CI restarted |
Test run: FAILEDSummary: 1 of 6 test jobs failed Failed test jobs:
|
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
@evedon @LDong-Arm @rajkan01 @kjbracey-arm