Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork446
Added a compatibility trick indebug -I fortoolchain.prefix key#2428
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
The key was ignored in older versions of the Arduino IDE.In the upcoming release (Arduino IDE 2.2.2) the key is used, but it waswrongly set to "arm-none-eabi-" when we actually want "arm-none-eabi".This patch ensure backward and forward compatibility.
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@## master #2428 +/- ##==========================================+ Coverage 67.27% 67.33% +0.05%========================================== Files 210 210 Lines 20523 20526 +3 ==========================================+ Hits 13807 13821 +14+ Misses 5578 5566 -12- Partials 1138 1139 +1
Flags with carried forward coverage won't be shown.Click here to find out more. ☔ View full report in Codecov by Sentry. |
…hain.prefix` key (#2428)* Added a compatibility trick in "debug -I" for toolchain.prefix keyThe key was ignored in older versions of the Arduino IDE.In the upcoming release (Arduino IDE 2.2.2) the key is used, but it waswrongly set to "arm-none-eabi-" when we actually want "arm-none-eabi".This patch ensure backward and forward compatibility.* Fixed debug command
With newer versions of the IDE this was causing problems.Seearduino/arduino-cli#2428
Please check if the PR fulfills these requirements
Seehow to contribute
before creating one)
our contributing guidelines
UPGRADING.mdhas been updated with a migration guide (for breaking changes)configuration.schema.jsonupdated if new parameters are added.What kind of change does this PR introduce?
The
debug.toolchain.prefixkey was ignored in older versions of the Arduino IDE.In the upcoming release (Arduino IDE 2.2.2) instead the key is used, but in the older releases of the platforms it was wrongly set to
"arm-none-eabi-"when we actually want"arm-none-eabi".This patch ensures backward and forward compatibility.
What is the current behavior?
What is the new behavior?
Does this PR introduce a breaking change, and istitled accordingly?
Other information