Skip to content
Merged
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
7 changes: 7 additions & 0 deletions jenkins/scripts/select-compiler.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,13 @@ if [ "$NODEJS_MAJOR_VERSION" -ge "25" ]; then
echo "Compiler set to Clang" `${CXX} -dumpversion`
return
;;
*debian12*)
echo "Using Clang for Node.js $NODEJS_MAJOR_VERSION"
export CC="ccache clang-19"
export CXX="ccache clang++-19"
echo "Compiler set to Clang" `${CXX} -dumpversion`
return
;;
esac
fi

Expand Down