From: Augustin Degomme Date: Fri, 22 Apr 2022 15:38:53 +0000 (+0000) Subject: disable LTO on the arm builder, as it is believed to be too heavy for this particular... X-Git-Tag: v3.32~307 X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/346a01b67c81963fbe4bc34b5c27d33b007dafd4 disable LTO on the arm builder, as it is believed to be too heavy for this particular system since c++17 upgrade --- diff --git a/tools/jenkins/build.sh b/tools/jenkins/build.sh index 3dea3ca140..5e94d83067 100755 --- a/tools/jenkins/build.sh +++ b/tools/jenkins/build.sh @@ -211,6 +211,11 @@ if [ "$os" = "CentOS" ]; then fi fi +if [ $NODE_NAME = "armv8" ]; then + echo "disable LTO, believed to be too heavy for this particular system" + MAY_DISABLE_LTO=-Denable_lto=OFF +fi + cmake -G"$GENERATOR" ${INSTALL:+-DCMAKE_INSTALL_PREFIX=$INSTALL} \ -Denable_debug=ON -Denable_documentation=OFF -Denable_coverage=OFF \ -Denable_model-checking=$(onoff test "$build_mode" = "ModelChecker") \