aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColm Donelan <colm.donelan@arm.com>2022-10-25 09:47:15 +0100
committerColm Donelan <colm.donelan@arm.com>2022-10-25 09:47:15 +0100
commitb51aab9ae123ddbf02bc81eb2b36054e09ec57e4 (patch)
tree505e9ace95fc27c23f6e45c25379bfef5c13b145
parentf8696267c63348d1cd08c6c5fef1abad937da221 (diff)
downloadandroid-nn-driver-b51aab9ae123ddbf02bc81eb2b36054e09ec57e4.tar.gz
IVGCVSW--7126 Update setup.sh to use Flat Buffers v2.0.6
Signed-off-by: Colm Donelan <colm.donelan@arm.com> Change-Id: Ie218ba025f83ef7163eb8b548a89625a271c8a4c
-rwxr-xr-xsetup.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/setup.sh b/setup.sh
index a6138f7e..76ea9b78 100755
--- a/setup.sh
+++ b/setup.sh
@@ -40,11 +40,11 @@ function BuildFlatbuffers {
}
if [ ! -d flatbuffers ]; then
- echo "++ Downloading FlatBuffers v1.12.0"
+ echo "++ Downloading FlatBuffers v2.0.6"
- FLATBUFFERS_PKG=v1.12.0.tar.gz
+ FLATBUFFERS_PKG=v2.0.6.tar.gz
- curl -LOk https://github.com/google/flatbuffers/archive/v1.12.0.tar.gz
+ curl -LOk https://github.com/google/flatbuffers/archive/${FLATBUFFERS_PKG}
AssertZeroExitCode "Downloading FlatBuffers failed"
mkdir -p flatbuffers
tar xzf $FLATBUFFERS_PKG -C flatbuffers --strip-components 1