Skip to content
Snippets Groups Projects
Commit 0657bb81 authored by Martin Killenberg's avatar Martin Killenberg Committed by Martin Christoph Hierholzer
Browse files

Re-introduce explicit use of clang-14

The clang-10 package introduces the clang symlink, but not through the alternatives mechanism but direcly.
As a workaround we fall back to using the explicit versions clang-14 and clang++-14
parent c2257f0e
No related branches found
No related tags found
No related merge requests found
......@@ -460,11 +460,11 @@ for VAR in \${JOB_VARIABLES}; do
export \\`eval echo \\\${VAR}\\`
done
if [ "${buildType}" == "tsan" ]; then
export CC="clang"
export CXX="clang++"
export CC="clang-14"
export CXX="clang++-14"
elif [ "${buildType}" == "asan" ]; then
export CC="clang"
export CXX="clang++"
export CC="clang-14"
export CXX="clang++-14"
export LSAN_OPTIONS=verbosity=1:log_threads=1
fi
if [ "${DISABLE_TEST}" == "true" ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment