From: Matan Breizman Date: Sun, 16 Feb 2025 14:40:17 +0000 (+0000) Subject: src/script/lib-build.sh: start search for clang versions with 16 rather than 14 X-Git-Tag: v20.0.0~60^2~7 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=08ae32f016ef7ea9afc253195d5288929e725e85;p=ceph.git src/script/lib-build.sh: start search for clang versions with 16 rather than 14 Signed-off-by: Matan Breizman --- diff --git a/src/script/lib-build.sh b/src/script/lib-build.sh index 22b8c7a025ff..857b3e2760a4 100755 --- a/src/script/lib-build.sh +++ b/src/script/lib-build.sh @@ -72,7 +72,7 @@ function discover_compiler() { local cxx_compiler=g++ local c_compiler=gcc # ubuntu/debian ci builds prefer clang - for i in {14..12}; do + for i in {16..12}; do if type -t "clang-$i" > /dev/null; then cxx_compiler="clang++-$i" c_compiler="clang-$i"