Skip to content

Commit

Permalink
jenkins: enable select-compiler.sh on armv7l
Browse files Browse the repository at this point in the history
Select GCC 10 for Node.js >=20

Refs: nodejs#3317 (comment)
  • Loading branch information
targos committed Dec 11, 2023
1 parent e2440ff commit 230389b
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions jenkins/scripts/select-compiler.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ if [ "$DONTSELECT_COMPILER" != "DONT" ]; then
*aix* ) SELECT_ARCH=AIXPPC ;;
*x64* ) SELECT_ARCH=X64 ;;
*arm64* ) SELECT_ARCH=ARM64 ;;
*armv7l* ) SELECT_ARCH=ARMV7L ;;
*ibmi73* ) SELECT_ARCH=IBMI73 ;;
esac
fi
Expand Down Expand Up @@ -253,4 +254,22 @@ elif [ "$SELECT_ARCH" = "ARM64" ]; then
;;
esac

elif [ "$SELECT_ARCH" = "ARMV7L" ]; then
echo "Setting compiler for Node version $NODEJS_MAJOR_VERSION on armv7l"

case $nodes in
*ubuntu2004* )
if [ "$NODEJS_MAJOR_VERSION" -gt "19" ]; then
export CC="ccache gcc-10"
export CXX="ccache g++-10"
export LINK="g++-10"
else
export CC="ccache gcc"
export CXX="ccache g++"
export LINK="g++"
fi
echo "Compiler set to GCC" `$CXX -dumpversion`
;;
esac

fi

0 comments on commit 230389b

Please sign in to comment.