Skip to content
Snippets Groups Projects
Commit 5e824240 authored by Lingkai Dong's avatar Lingkai Dong
Browse files

docs: Fix path to gcc toolchain file


Fix wrong path to gcc toolchain file in the template for README.md that
goes into each generated example.

Signed-off-by: Lingkai Dong's avatarLingkai Dong <lingkai.dong@arm.com>
parent 82482d1d
No related branches found
No related tags found
No related merge requests found
......@@ -27,14 +27,14 @@ To configure CMake to use a particular toolchain you must pass in a
The example will automatically fetch the default toolchain files for
* Arm Compiler 6: `--toolchain toolchains/toolchain-armclang.cmake`
* GNU Arm Embedded Toolchain (GCC) `--toolchain toolchains/arm-none-eabi-gcc.cmake`
* GNU Arm Embedded Toolchain (GCC) `--toolchain toolchains/toolchain-arm-none-eabi-gcc.cmake`
### Configuration and building
To configure this example, e.g. using GCC:
```
cmake -B __build -GNinja --toolchain toolchains/arm-none-eabi-gcc.cmake
cmake -B __build -GNinja --toolchain toolchains/toolchain-arm-none-eabi-gcc.cmake
```
**Notes**:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment