summaryrefslogtreecommitdiff
path: root/docs/sections/building.md
diff options
context:
space:
mode:
authoralexander <alexander.efremov@arm.com>2021-04-15 19:05:03 +0100
committeralexander <alexander.efremov@arm.com>2021-04-15 19:05:03 +0100
commitc930ad9dc189d831ac77f716df288f70178d4c10 (patch)
treed59f8f6b94172c47e731b683efb4371b1a19fe5a /docs/sections/building.md
parentdc8f3c805126a64813663fd55e83f37c5324edb1 (diff)
downloadml-embedded-evaluation-kit-c930ad9dc189d831ac77f716df288f70178d4c10.tar.gz
Windows support was removed from documentation.
TensorFlow Lite micro build is not compatible with MinGW make. Signed-off-by: alexander <alexander.efremov@arm.com> Change-Id: I0980838f659431b18ebc54ec0a1e4371941c36b4
Diffstat (limited to 'docs/sections/building.md')
-rw-r--r--docs/sections/building.md30
1 files changed, 2 insertions, 28 deletions
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: