aboutsummaryrefslogtreecommitdiff
path: root/src/dynamic/README.md
diff options
context:
space:
mode:
authorSadik Armagan <sadik.armagan@arm.com>2021-07-22 12:28:43 +0100
committerSadik Armagan <sadik.armagan@arm.com>2021-07-26 10:25:28 +0000
commitda245eb153337c6f1e75383bfe0fecd2cdcaed04 (patch)
treee0604d5b0ac12487d45e61debd1e43c994b0de89 /src/dynamic/README.md
parentd7ed6d4e53a877a25fcea754d76c8831451f18f1 (diff)
downloadarmnn-da245eb153337c6f1e75383bfe0fecd2cdcaed04.tar.gz
IVGCVSW-5966 'Update all the documentation'
* Update all documentation for removing BOOST library dependency Signed-off-by: Sadik Armagan <sadik.armagan@arm.com> Change-Id: Ie21ff096a11b7a623b1b9bb6f71eb63ea6e7b615
Diffstat (limited to 'src/dynamic/README.md')
-rw-r--r--src/dynamic/README.md6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/dynamic/README.md b/src/dynamic/README.md
index 39ed18895d..6efec20465 100644
--- a/src/dynamic/README.md
+++ b/src/dynamic/README.md
@@ -23,15 +23,13 @@ The makefile used for building the standalone reference dynamic backend is also
### Standalone dynamic backend build
The easiest way to build a standalone sample dynamic backend is to build using environment configured compiler
-and specify the Arm NN path and Boost path to the CMake command:
+and specify the Arm NN path to the CMake command:
```shell
cd ${DYNAMIC_BACKEND_DIR}
mkdir build
cd build
-cmake -DBOOST_ROOT=${BOOST_PATH} \
- -DBoost_SYSTEM_LIBRARY=${BOOST_PATH}/lib/libboost_system.a \
- -DARMNN_PATH=${ARMNN_PATH}/libarmnn.so ..
+cmake -DARMNN_PATH=${ARMNN_PATH}/libarmnn.so ..
```
Then run the build