aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKristofer Jonsson <kristofer.jonsson@arm.com>2022-11-16 13:12:56 +0100
committerKristofer Jonsson <kristofer.jonsson@arm.com>2022-11-16 13:12:56 +0100
commit5fd55e73643805750669d0531aa1f6f0c98c8a7b (patch)
treea3341e84998f9c51b39cfa2f52a3cdd56fb0648c
parentc9726d0d39d446a1ecee8ad9cf854fd0868dcf1b (diff)
downloadethos-u-core-platform-5fd55e73643805750669d0531aa1f6f0c98c8a7b.tar.gz
Update documentation how to build for Windows22.11-rc2
Change-Id: I41d8b6a796820dfa0fba89389ef15a8915e666f8
-rw-r--r--README.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/README.md b/README.md
index e870ed9..5840bfb 100644
--- a/README.md
+++ b/README.md
@@ -70,8 +70,12 @@ CMake supports a long list of generators, for example Ninja, NMake or Makefiles.
For Windows Ninja has been verified to work well, but any of the supported
generators should be possible to use.
+Please note that the maximum path length is by default set to 260 characters on
+Windows. It is recommended to place the Ethos-U source tree and build folder at
+the root of the file system.
+
```
-CMD> cmake -G Ninja -B build targets/corstone-300 -DCMAKE_TOOLCHAIN_FILE=%CD%\cmake\toolchain\arm-none-eabi-gcc.cmake
+CMD> cmake -G Ninja -B build targets/corstone-300 --toolchain %CD%\cmake\toolchain\arm-none-eabi-gcc.cmake
CMD> cmake --build build
```