Skip to content

Commit a202e82

Browse files
committed
Corrected supported_c_libs
1 parent 7ea0cf2 commit a202e82

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/reference/bare_metal/microlib.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ By default, only a few targets have been tested with microlib. If your target ha
2222

2323
Once you have completed the steps above, add `small` to the `supported_c_libs` parameter for your target in `targets.json`:
2424
```
25-
"supported_c_lib": {
26-
"ARM": ["std", "small"],
27-
"GCC": ["std", "small"],
28-
"IAR": ["std"]
25+
"supported_c_libs": {
26+
"arm": ["std", "small"],
27+
"gcc_arm": ["std", "small"],
28+
"iar": ["std"]
2929
}
3030
```
3131

@@ -35,7 +35,7 @@ You can build with microlib by creating a `mbed_app.json` with the following con
3535
```
3636
{
3737
"target_overrides": {
38-
"*": {
38+
"*": {
3939
"target.c_lib": "small"
4040
}
4141
}

0 commit comments

Comments
 (0)