Skip to content

Commit d057c68

Browse files
committed
Add ARMC6 where appropriate
1 parent 8082d43 commit d057c68

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/refs/porting/mbed_os_targets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Add the target description to `mbed-os\targets\targets.json`:
2525
"MCU_NAME": {
2626
"inherits": ["Target"],
2727
"core": "Cortex-M3",
28-
"supported_toolchains": ["ARM", "GCC_ARM", "IAR"],
28+
"supported_toolchains": ["ARM", "ARMC6", "GCC_ARM", "IAR"],
2929
"device_has": ["SERIAL", "STDIO_MESSAGES"]
3030
},
3131
"BOARD_NAME": {

docs/refs/porting/mbed_targets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ Mbed, libraries and application source code can then select different implementa
150150

151151
##### `supported_toolchains`
152152

153-
The `supported_toolchains` property is the list of toolchains that support a target. The allowed values for `supported_toolchains` are `ARM`, `uARM`, `GCC_ARM` and `IAR`.
153+
The `supported_toolchains` property is the list of toolchains that support a target. The allowed values for `supported_toolchains` are `ARM`, `uARM`, `ARMC6`, `GCC_ARM` and `IAR`.
154154

155155
##### `default_toolchain`
156156

docs/tutorials/first_app/blinky_cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Blinky is now under `dev_directory` > `mbed-os-example-blinky`. You can look at
7878
Invoke `mbed compile`, specifying:
7979

8080
* Your board: `-m <board_name>`.
81-
* Your toolchain: `-t <GCC_ARM`, `ARM` or `IAR`>`.
81+
* Your toolchain: `-t <GCC_ARM`, `ARM`, `ARMC6` or `IAR`>`.
8282

8383
For example, for the board K64F and the Arm Compiler 5:
8484

docs/tutorials/optimize/memory/memap.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ optional arguments:
2121
-h, --help show this help message and exit
2222
-t TOOLCHAIN, --toolchain TOOLCHAIN
2323
select a toolchain used to build the memory map file
24-
(ARM, GCC_ARM, IAR)
24+
(ARM, ARMC6, GCC_ARM, IAR)
2525
-o OUTPUT, --output OUTPUT
2626
output file name
2727
-e EXPORT, --export EXPORT
@@ -72,7 +72,7 @@ There are other entries that require a bit of clarification:
7272

7373
#### Current support
7474

75-
We have tested *memap* on Windows 7, Linux and Mac OS X. The `GCC_ARM` (GNU Arm Embedded Toolchain), Arm (Arm Compiler 5) and IAR toolchains generate memory map files.
75+
We have tested *memap* on Windows 7, Linux and Mac OS X. The `GCC_ARM` (GNU Arm Embedded Toolchain), Arm Compiler 5, Arm Compiler 6 and IAR toolchains generate memory map files.
7676

7777
#### Known issues and new features
7878

0 commit comments

Comments
 (0)