We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c370dd commit 9d47a84Copy full SHA for 9d47a84
1 file changed
jenkins/scripts/select-compiler.sh
@@ -36,6 +36,14 @@ fi
36
# Gradual transition to Clang from Node.js 25 (https://github.com/nodejs/build/issues/4091).
37
if [ "$NODEJS_MAJOR_VERSION" -ge "25" ]; then
38
case $NODE_NAME in
39
+ *aix*)
40
+ echo "Using Clang for Node.js $NODEJS_MAJOR_VERSION"
41
+ export PATH="/opt/clang+llvm-20.1.7-powerpc64-ibm-aix-7.2/bin/:$PATH"
42
+ export CC="ccache clang"
43
+ export CXX="ccache clang++"
44
+ echo "Compiler set to Clang" `${CXX} -dumpversion`
45
+ return
46
+ ;;
47
*fedora*)
48
echo "Using Clang for Node.js $NODEJS_MAJOR_VERSION"
49
export CC="ccache clang"
0 commit comments