]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
src/script/lib-build.sh: start search for clang versions with 16 rather than 14
authorMatan Breizman <mbreizma@redhat.com>
Sun, 16 Feb 2025 14:40:17 +0000 (14:40 +0000)
committerMatan Breizman <mbreizma@redhat.com>
Thu, 20 Feb 2025 14:20:14 +0000 (14:20 +0000)
Signed-off-by: Matan Breizman <mbreizma@redhat.com>
src/script/lib-build.sh

index 22b8c7a025ff642c06f03f7dda3f1edf5f63b2e3..857b3e2760a494d6f526221f9eacd3eaa9b6fd97 100755 (executable)
@@ -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"