summaryrefslogtreecommitdiffstats
path: root/contrib/jenkins-arm.sh
blob: beb53dad54b1ec6fe4717be0f041f6f80717be76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh

. $(dirname "$0")/jenkins_common.sh

build() {
    $1 --enable-static \
	--prefix=/usr/local/arm-none-eabi \
	--host=arm-none-eabi \
	--enable-embedded \
	--disable-shared \
	CFLAGS="-Os -ffunction-sections -fdata-sections -nostartfiles -nodefaultlibs -Werror"

$MAKE $PARALLEL_MAKE \
	|| cat-testlogs.sh
}

# verify build in dir other than source tree
mkdir -p builddir
cd builddir
build ../configure

cd ..
build ./configure