aboutsummaryrefslogtreecommitdiff
path: root/setup.sh
diff options
context:
space:
mode:
authorSadik Armagan <sadik.armagan@arm.com>2021-07-15 09:46:08 +0100
committerSadik Armagan <sadik.armagan@arm.com>2021-07-15 09:46:08 +0100
commitb90ab633d46ab07a5c8a7c9e162e6f540eb9a5d9 (patch)
tree7a1694566321264fd3a83dc7ff9a012bd9ff1f54 /setup.sh
parentfdf2eaea1773d066dbb48e3d214ccd5446fa918a (diff)
downloadandroid-nn-driver-b90ab633d46ab07a5c8a7c9e162e6f540eb9a5d9.tar.gz
IVGCVSW-5965: Remove the boost library from android-nn-driver build files.
* Remove all references to boost from the android-nn-driver build files: !armnn:5811 Signed-off-by: Colm Donelan <Colm.Donelan@arm.com> Signed-off-by: Sadik Armagan <sadik.armagan@arm.com> Change-Id: I7df7d815e658a52acf3e32305bc300dfaf9a1fe4
Diffstat (limited to 'setup.sh')
-rwxr-xr-xsetup.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/setup.sh b/setup.sh
index d1d62c9c..bf444cad 100755
--- a/setup.sh
+++ b/setup.sh
@@ -9,24 +9,6 @@ function AssertZeroExitCode {
fi
}
-if [ ! -d boost_1_64_0 ]; then
- echo "++ Downloading Boost"
-
- BOOST_PKG=boost_1_64_0.tar.gz
-
- # There is a problem with downloading boost from the external. Issue can be found here:https://github.com/boostorg/boost/issues/299.
- # Using a mirror link to download boost.
- curl -LOk https://boostorg.jfrog.io/artifactory/main/release/1.64.0/source/boost_1_64_0.tar.gz
- # curl -LOk https://sourceforge.net/projects/boost/files/boost/1.64.0/boost_1_64_0.tar.gz # had switched to this mirror as we were not able to download boost from boostorg.
- AssertZeroExitCode "Downloading Boost failed"
-
- tar xzf $BOOST_PKG
- AssertZeroExitCode "Unpacking Boost failed"
-
- rm -rf $BOOST_PKG
-fi
-
-
if [ ! -d v1.12.0 ]; then
echo "++ Downloading FlatBuffers"