From c930ad9dc189d831ac77f716df288f70178d4c10 Mon Sep 17 00:00:00 2001 From: alexander Date: Thu, 15 Apr 2021 19:05:03 +0100 Subject: Windows support was removed from documentation. TensorFlow Lite micro build is not compatible with MinGW make. Signed-off-by: alexander Change-Id: I0980838f659431b18ebc54ec0a1e4371941c36b4 --- docs/sections/building.md | 30 ++---------------------------- docs/sections/customizing.md | 2 -- 2 files changed, 2 insertions(+), 30 deletions(-) (limited to 'docs/sections') diff --git a/docs/sections/building.md b/docs/sections/building.md index f564ce6..921d8cf 100644 --- a/docs/sections/building.md +++ b/docs/sections/building.md @@ -81,7 +81,7 @@ are fulfilled: python3 -m venv ``` -- Make or MinGW make For Windows +- Make ```commandline make --version @@ -275,16 +275,6 @@ cmake \ -DCMAKE_TOOLCHAIN_FILE=scripts/cmake/bare-metal-toolchain.cmake .. ``` -For Windows, add `-G "MinGW Makefiles"`: - -```commandline -cmake \ - -G "MinGW Makefiles" \ - -DTARGET_PLATFORM=mps3 \ - -DTARGET_SUBSYSTEM=sse-300 \ - -DCMAKE_TOOLCHAIN_FILE=scripts/cmake/bare-metal-toolchain.cmake .. -``` - Toolchain option `CMAKE_TOOLCHAIN_FILE` points to the toolchain specific file to set the compiler and platform specific parameters. @@ -355,16 +345,6 @@ cmake \ -DTARGET_PLATFORM=native \ -DCMAKE_TOOLCHAIN_FILE=scripts/cmake/native-toolchain.cmake .. ``` - -For Windows add `-G "MinGW Makefiles"`: - -```commandline -cmake \ - -DTARGET_PLATFORM=native \ - -DCMAKE_TOOLCHAIN_FILE=scripts/cmake/native-toolchain.cmake \ - -G "MinGW Makefiles .. -``` - Results of the build will be placed under `build/bin/` folder: ```tree @@ -398,13 +378,7 @@ If the CMake command succeeds, build the application as follows: make -j4 ``` -or for Windows: - -```commandline -mingw32-make -j4 -``` - -Add `VERBOSE=1` to see compilation and link details. +Add `VERBOSE=1` to see compilation and link details. Results of the build will be placed under `build/bin` folder, an example: diff --git a/docs/sections/customizing.md b/docs/sections/customizing.md index 346a34c..8781855 100644 --- a/docs/sections/customizing.md +++ b/docs/sections/customizing.md @@ -723,8 +723,6 @@ cmake \ -DCMAKE_TOOLCHAIN_FILE=scripts/cmake/bare-metal-toolchain.cmake .. ``` -For Windows, add `-G "MinGW Makefiles"` to the CMake command. - As a result, `ethos-u-hello_world.axf` should be created, MPS3 build will also produce `sectors/hello_world` directory with binaries and `images-hello_world.txt` to be copied to the board MicroSD card. -- cgit v1.2.1