blob: 8e6d632d8c7c7a50d2906ca0ad9010d77ccad2bc [file] [log] [blame]
#!/bin/bash
# Copyright 2022 The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
#
# Called with following arguments:
# 1 - Path to the downloads folder which is typically
# ${TENSORFLOW_ROOT}/tensorflow/lite/micro/tools/make/downloads
# 2 - (optional) TENSORFLOW_ROOT: path to root of the TFLM tree (relative to directory from where the script is called).
#
# This script is called from the Makefile and uses the following convention to
# enable determination of sucess/failure:
#
# - If the script is successful, the only output on stdout should be SUCCESS.
# The makefile checks for this particular string.
#
# - Any string on stdout that is not SUCCESS will be shown in the makefile as
# the cause for the script to have failed.
#
# - Any other informational prints should be on stderr.
set -e
TENSORFLOW_ROOT=${2}
source ${TENSORFLOW_ROOT}tensorflow/lite/micro/tools/make/bash_helpers.sh
DOWNLOADS_DIR=${1}
if [ ! -d ${DOWNLOADS_DIR} ]; then
echo "The top-level downloads directory: ${DOWNLOADS_DIR} does not exist."
exit 1
fi
DOWNLOADED_GCC_PATH=${DOWNLOADS_DIR}/gcc_embedded
if [ -d ${DOWNLOADED_GCC_PATH} ]; then
echo >&2 "${DOWNLOADED_GCC_PATH} already exists, skipping the download."
else
HOST_OS=
if [ "${OS}" == "Windows_NT" ]; then
HOST_OS=windows
else
UNAME_S=`uname -s`
if [ "${UNAME_S}" == "Linux" ]; then
HOST_OS=linux
elif [ "${UNAME_S}" == "Darwin" ]; then
HOST_OS=osx
fi
fi
if [ "${HOST_OS}" == "linux" ]; then
# host architechture
UNAME_M=`uname -m`
if [ "${UNAME_M}" == "x86_64" ]; then
GCC_URL="https://developer.arm.com/-/media/Files/downloads/gnu-rm/10.3-2021.10/gcc-arm-none-eabi-10.3-2021.10-x86_64-linux.tar.bz2"
EXPECTED_MD5="2383e4eb4ea23f248d33adc70dc3227e"
elif [ "${UNAME_M}" == "aarch64" ]; then
GCC_URL="https://developer.arm.com/-/media/Files/downloads/gnu-rm/10.3-2021.10/gcc-arm-none-eabi-10.3-2021.10-aarch64-linux.tar.bz2"
EXPECTED_MD5="3fe3d8bb693bd0a6e4615b6569443d0d"
fi
elif [ "${HOST_OS}" == "osx" ]; then
GCC_URL="https://developer.arm.com/-/media/Files/downloads/gnu-rm/10.3-2021.10/gcc-arm-none-eabi-10.3-2021.10-mac.tar.bz2"
EXPECTED_MD5="7f2a7b7b23797302a9d6182c6e482449"
elif [ "${HOST_OS}" == "windows" ]; then
GCC_URL="https://developer.arm.com/-/media/Files/downloads/gnu-rm/10.3-2021.10/gcc-arm-none-eabi-10.3-2021.10-win32.zip"
EXPECTED_MD5="2bc8f0c4c4659f8259c8176223eeafc1"
else
echo "OS type ${HOST_OS} not supported."
exit 1
fi
TEMPDIR=$(mktemp -d)
TEMPFILE=${TEMPDIR}/temp_file
wget ${GCC_URL} -O ${TEMPFILE} >&2
check_md5 ${TEMPFILE} ${EXPECTED_MD5}
mkdir ${DOWNLOADED_GCC_PATH}
if [ "${HOST_OS}" == "windows" ]; then
unzip -q ${TEMPFILE} -d ${TEMPDIR} >&2
mv ${TEMPDIR}/*/* ${DOWNLOADED_GCC_PATH}
else
tar -C ${DOWNLOADED_GCC_PATH} --strip-components=1 -xjf ${TEMPFILE} >&2
fi
echo >&2 "Unpacked to directory: ${DOWNLOADED_GCC_PATH}"
fi
echo "SUCCESS"