Skip to content

Commit 15a263f

Browse files
Add bare metal support to Renesas targets
Modify RZ_A1XX and RZ_A2XX target configurations to include bare metal as a supported profile,and add list of supported standard libraries. Changes affect the following targets: RZ_A1H, GR_LYCHEE, GR_MANGO.
1 parent 2660621 commit 15a263f

File tree

1 file changed

+23
-1
lines changed

1 file changed

+23
-1
lines changed

targets/targets.json

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4841,6 +4841,17 @@
48414841
"program_cycle_s": 2,
48424842
"overrides": {
48434843
"network-default-interface-type": "ETHERNET"
4844+
},
4845+
"supported_application_profiles" : ["full", "bare-metal"],
4846+
"supported_c_libs": {
4847+
"arm": [
4848+
"std",
4849+
"small"
4850+
],
4851+
"gcc_arm": [
4852+
"std",
4853+
"small"
4854+
]
48444855
}
48454856
},
48464857
"RZ_A1H": {
@@ -4956,7 +4967,18 @@
49564967
"STDIO_MESSAGES",
49574968
"USBDEVICE"
49584969
],
4959-
"program_cycle_s": 2
4970+
"program_cycle_s": 2,
4971+
"supported_application_profiles" : ["full", "bare-metal"],
4972+
"supported_c_libs": {
4973+
"arm": [
4974+
"std",
4975+
"small"
4976+
],
4977+
"gcc_arm": [
4978+
"std",
4979+
"small"
4980+
]
4981+
}
49604982
},
49614983
"GR_MANGO": {
49624984
"inherits": ["RZ_A2XX"],

0 commit comments

Comments
 (0)