aboutsummaryrefslogtreecommitdiff
path: root/BuildGuideAndroidNDK.md
diff options
context:
space:
mode:
Diffstat (limited to 'BuildGuideAndroidNDK.md')
-rw-r--r--BuildGuideAndroidNDK.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/BuildGuideAndroidNDK.md b/BuildGuideAndroidNDK.md
index a133956dbb..8e634f3ff1 100644
--- a/BuildGuideAndroidNDK.md
+++ b/BuildGuideAndroidNDK.md
@@ -86,13 +86,13 @@ cd..
Download Flatbuffers:
```bash
cd $WORKING_DIR
-wget https://github.com/google/flatbuffers/archive/v2.0.6.tar.gz
-tar xf v2.0.6.tar.gz
+wget https://github.com/google/flatbuffers/archive/v23.5.26.tar.gz
+tar xf v23.5.26.tar.gz
```
Build Flatbuffers for x86:
```bash
-cd $WORKING_DIR/flatbuffers-2.0.6
+cd $WORKING_DIR/flatbuffers-23.5.26
rm -f CMakeCache.txt
@@ -113,7 +113,7 @@ Note: -fPIC is added to allow users to use the libraries in shared objects.
Build Flatbuffers for Android:
```bash
-cd $WORKING_DIR/flatbuffers-2.0.6
+cd $WORKING_DIR/flatbuffers-23.5.26
rm -f CMakeCache.txt
@@ -170,7 +170,7 @@ First clone Tensorflow manually and check out the version Arm NN was tested with
cd $WORKING_DIR
git clone https://github.com/tensorflow/tensorflow.git
cd tensorflow
-git fetch && git checkout "6f692f73cb2043b4a0b0446539cd8c15b3dd9220"
+git fetch && git checkout v2.14.0-rc1
```
Or use the script that Arm NN provides:
```bash