Skip to content

Commit 5f9fbfe

Browse files
authored
Merge pull request #14301 from harmut01/baremetal_renesas
Add bare metal support to Renesas targets
2 parents 7a707de + 15e8511 commit 5f9fbfe

File tree

1 file changed

+25
-4
lines changed

1 file changed

+25
-4
lines changed

targets/targets.json

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4891,8 +4891,7 @@
48914891
"core": "Cortex-A9",
48924892
"supported_toolchains": [
48934893
"ARM",
4894-
"GCC_ARM",
4895-
"IAR"
4894+
"GCC_ARM"
48964895
],
48974896
"extra_labels": [
48984897
"RENESAS",
@@ -4924,6 +4923,17 @@
49244923
"program_cycle_s": 2,
49254924
"overrides": {
49264925
"network-default-interface-type": "ETHERNET"
4926+
},
4927+
"supported_application_profiles" : ["full", "bare-metal"],
4928+
"supported_c_libs": {
4929+
"arm": [
4930+
"std",
4931+
"small"
4932+
],
4933+
"gcc_arm": [
4934+
"std",
4935+
"small"
4936+
]
49274937
}
49284938
},
49294939
"RZ_A1H": {
@@ -5013,7 +5023,7 @@
50135023
"inherits": ["Target"],
50145024
"public": false,
50155025
"core": "Cortex-A9",
5016-
"supported_toolchains": ["ARM", "GCC_ARM", "IAR"],
5026+
"supported_toolchains": ["ARM", "GCC_ARM"],
50175027
"extra_labels": ["RENESAS", "RZ_A2XX"],
50185028
"device_has": [
50195029
"SLEEP",
@@ -5039,7 +5049,18 @@
50395049
"STDIO_MESSAGES",
50405050
"USBDEVICE"
50415051
],
5042-
"program_cycle_s": 2
5052+
"program_cycle_s": 2,
5053+
"supported_application_profiles" : ["full", "bare-metal"],
5054+
"supported_c_libs": {
5055+
"arm": [
5056+
"std",
5057+
"small"
5058+
],
5059+
"gcc_arm": [
5060+
"std",
5061+
"small"
5062+
]
5063+
}
50435064
},
50445065
"GR_MANGO": {
50455066
"inherits": ["RZ_A2XX"],

0 commit comments

Comments
 (0)