From 139d517bc15d400442e1127aee68509d59e0d546 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Thu, 13 Oct 2022 11:41:23 +0200 Subject: [PATCH] contrib/jenkins.sh: set USE_CLANG=1 As the bootloader goes beyond partition size in modern gcc, use clang instead. Depends: docker-playground Ib82a53fa7edc62d21e772efbb9b2c049d1b50c4d Related: OS#5260 Change-Id: I2aa2e20e75e334560dbe1f6db9fd1491873ff91f --- contrib/jenkins.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/jenkins.sh b/contrib/jenkins.sh index 8e818201..1c2e2ea8 100755 --- a/contrib/jenkins.sh +++ b/contrib/jenkins.sh @@ -40,7 +40,7 @@ for build in $BUILDS; do app=`echo $build | cut -d "/" -f 2` echo echo "=============== $board / $app START ==============" - make BOARD="$board" APP="$app" + PATH="/opt/llvm-arm/bin:$PATH" make USE_CLANG=1 BOARD="$board" APP="$app" echo "=============== $board / $app RES:$? ==============" done