Skip to content

Add bare metal support to Renesas targets #14301

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

Merged
merged 2 commits into from
Mar 9, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 25 additions & 4 deletions targets/targets.json
Original file line number Diff line number Diff line change
Expand Up @@ -4808,8 +4808,7 @@
"core": "Cortex-A9",
"supported_toolchains": [
"ARM",
"GCC_ARM",
"IAR"
"GCC_ARM"
],
"extra_labels": [
"RENESAS",
Expand Down Expand Up @@ -4841,6 +4840,17 @@
"program_cycle_s": 2,
"overrides": {
"network-default-interface-type": "ETHERNET"
},
"supported_application_profiles" : ["full", "bare-metal"],
"supported_c_libs": {
Copy link
Contributor

@LDong-Arm LDong-Arm Feb 25, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please remove IAR from line 4812, to avoid check failure again in CI

"arm": [
"std",
"small"
],
"gcc_arm": [
"std",
"small"
]
}
},
"RZ_A1H": {
Expand Down Expand Up @@ -4930,7 +4940,7 @@
"inherits": ["Target"],
"public": false,
"core": "Cortex-A9",
"supported_toolchains": ["ARM", "GCC_ARM", "IAR"],
"supported_toolchains": ["ARM", "GCC_ARM"],
"extra_labels": ["RENESAS", "RZ_A2XX"],
"device_has": [
"SLEEP",
Expand All @@ -4956,7 +4966,18 @@
"STDIO_MESSAGES",
"USBDEVICE"
],
"program_cycle_s": 2
"program_cycle_s": 2,
"supported_application_profiles" : ["full", "bare-metal"],
"supported_c_libs": {
"arm": [
"std",
"small"
],
"gcc_arm": [
"std",
"small"
]
}
},
"GR_MANGO": {
"inherits": ["RZ_A2XX"],
Expand Down