2015-07-28 13:00:37 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2016-09-22 13:17:46 +00:00
|
|
|
# yotta-build.sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 2015-2016, ARM Limited, All Rights Reserved
|
2020-05-25 23:54:15 +00:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# This file is part of Mbed TLS (https://tls.mbed.org)
|
2016-09-22 13:17:46 +00:00
|
|
|
#
|
|
|
|
# Purpose
|
|
|
|
#
|
|
|
|
# To run test builds of the yotta module for all supported targets.
|
2015-07-28 13:00:37 +00:00
|
|
|
|
|
|
|
set -eu
|
|
|
|
|
2016-09-22 13:17:46 +00:00
|
|
|
check_tools()
|
|
|
|
{
|
|
|
|
for TOOL in "$@"; do
|
|
|
|
if ! `hash "$TOOL" >/dev/null 2>&1`; then
|
|
|
|
echo "$TOOL not found!" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
2015-07-28 13:00:37 +00:00
|
|
|
|
|
|
|
yotta_build()
|
|
|
|
{
|
|
|
|
TARGET=$1
|
2016-01-08 14:02:05 +00:00
|
|
|
|
|
|
|
echo; echo "*** $TARGET (release) ***"
|
2015-10-30 10:15:40 +00:00
|
|
|
yt -t $TARGET build
|
2016-01-08 14:02:05 +00:00
|
|
|
|
|
|
|
echo; echo "*** $TARGET (debug) ***"
|
|
|
|
yt -t $TARGET build -d
|
2015-07-28 13:00:37 +00:00
|
|
|
}
|
|
|
|
|
2016-09-22 13:17:46 +00:00
|
|
|
# Make sure the tools we need are available.
|
|
|
|
check_tools "arm-none-eabi-gcc" "armcc" "yotta"
|
|
|
|
|
|
|
|
yotta/create-module.sh
|
|
|
|
cd yotta/module
|
|
|
|
yt update || true # needs network
|
|
|
|
|
2015-07-28 13:00:37 +00:00
|
|
|
if uname -a | grep 'Linux.*x86' >/dev/null; then
|
|
|
|
yotta_build x86-linux-native
|
|
|
|
fi
|
|
|
|
if uname -a | grep 'Darwin.*x86' >/dev/null; then
|
|
|
|
yotta_build x86-osx-native
|
|
|
|
fi
|
2016-09-22 13:17:46 +00:00
|
|
|
|
|
|
|
# armcc build tests.
|
|
|
|
yotta_build frdm-k64f-armcc
|
|
|
|
#yotta_build nordic-nrf51822-16k-armcc
|
|
|
|
|
|
|
|
# arm-none-eabi-gcc build tests.
|
|
|
|
yotta_build frdm-k64f-gcc
|
|
|
|
#yotta_build st-nucleo-f401re-gcc # dirent
|
|
|
|
#yotta_build stm32f429i-disco-gcc # fails in mbed-hal-st-stm32f4
|
|
|
|
#yotta_build nordic-nrf51822-16k-gcc # fails in minar-platform
|
|
|
|
#yotta_build bbc-microbit-classic-gcc # fails in minar-platform
|
|
|
|
#yotta_build st-stm32f439zi-gcc # fails in mbed-hal-st-stm32f4
|
|
|
|
#yotta_build st-stm32f429i-disco-gcc # fails in mbed-hal-st-stm32f4
|