-
Notifications
You must be signed in to change notification settings - Fork 3k
Enabling small C library option and deprecating uARM toolchain #12068
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
Changes from all commits
957dca2
6d081ee
3697815
6a8c432
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,6 +37,24 @@ | |
"target_overrides": { | ||
"*": { | ||
"mbed-trace.fea-ipv6": false | ||
}, | ||
"K64F": { | ||
"target.default_lib": "small" | ||
}, | ||
"K66F": { | ||
"target.default_lib": "small" | ||
}, | ||
"NUCLEO_F303RE": { | ||
"target.default_lib": "small" | ||
}, | ||
"NUCLEO_F411RE": { | ||
"target.default_lib": "small" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why target.default_lib is not set to small for all targets, There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It has only been set for targets that have been tested so far. |
||
}, | ||
"NUCLEO_F429ZI": { | ||
"target.default_lib": "small" | ||
}, | ||
"DISCO_L475VG_IOT01A": { | ||
"target.default_lib": "small" | ||
} | ||
} | ||
} |
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.
What is that and why does it need to be set?
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.
I'll let rajkumar answer. But
mbed-trace.fea-ipv6
should have been overridden for all targets.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.
"mbed-trace.fea-ipv6": false added to disable IPV6 tracing code in mbed_trace and we need mbed_trace due to dependency with the device key. More information on PR #11875