blob: beb53dad54b1ec6fe4717be0f041f6f80717be76 [file] [log] [blame]
blobbcd8e7a42017-05-24 16:09:45 +02001#!/bin/sh
2
Max15b05fe2017-10-20 16:07:06 +02003. $(dirname "$0")/jenkins_common.sh
blobbcd8e7a42017-05-24 16:09:45 +02004
Max15b05fe2017-10-20 16:07:06 +02005build() {
6 $1 --enable-static \
blobbcd8e7a42017-05-24 16:09:45 +02007 --prefix=/usr/local/arm-none-eabi \
8 --host=arm-none-eabi \
9 --enable-embedded \
10 --disable-shared \
Pau Espin Pedrol0d119ef2017-06-18 11:02:37 +020011 CFLAGS="-Os -ffunction-sections -fdata-sections -nostartfiles -nodefaultlibs -Werror"
blobbcd8e7a42017-05-24 16:09:45 +020012
13$MAKE $PARALLEL_MAKE \
14 || cat-testlogs.sh
Max15b05fe2017-10-20 16:07:06 +020015}
blobbcd8e7a42017-05-24 16:09:45 +020016
17# verify build in dir other than source tree
Max15b05fe2017-10-20 16:07:06 +020018mkdir -p builddir
blobbcd8e7a42017-05-24 16:09:45 +020019cd builddir
Max15b05fe2017-10-20 16:07:06 +020020build ../configure
blobbcd8e7a42017-05-24 16:09:45 +020021
Max15b05fe2017-10-20 16:07:06 +020022cd ..
23build ./configure
blobbcd8e7a42017-05-24 16:09:45 +020024