Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions ansible/roles/baselayout/tasks/partials/ccache/aix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@
- g++-10
- gcc-12
- g++-12
- clang
- clang++

- name: "ccache : cleanup - aix tarball"
file:
Expand Down
8 changes: 8 additions & 0 deletions jenkins/scripts/select-compiler.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,14 @@ fi
# Gradual transition to Clang from Node.js 25 (https://github.com/nodejs/build/issues/4091).
if [ "$NODEJS_MAJOR_VERSION" -ge "25" ]; then
case $NODE_NAME in
*aix*)
echo "Using Clang for Node.js $NODEJS_MAJOR_VERSION"
export PATH="/opt/ccache-3.7.4/libexec:/opt/clang+llvm-20.1.7-powerpc64-ibm-aix-7.2/bin/:$PATH"
export CC="clang"
export CXX="clang++"
echo "Compiler set to Clang" `${CXX} -dumpversion`
return
;;
*fedora*)
echo "Using Clang for Node.js $NODEJS_MAJOR_VERSION"
export CC="ccache clang"
Expand Down