]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
src/script/lib-build.sh: clang should > 12. 55227/head
authorRongqi Sun <sunrongqi@huawei.com>
Thu, 18 Jan 2024 07:00:49 +0000 (15:00 +0800)
committerRongqi Sun <sunrongqi@huawei.com>
Wed, 24 Jan 2024 07:13:32 +0000 (15:13 +0800)
Signed-off-by: Rongqi Sun <sunrongqi@huawei.com>
src/script/lib-build.sh [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index 950c1ab..a96a20e
@@ -64,7 +64,7 @@ function discover_compiler() {
     local cxx_compiler=g++
     local c_compiler=gcc
     # ubuntu/debian ci builds prefer clang
-    for i in {17..10}; do
+    for i in {17..12}; do
         if type -t "clang-$i" > /dev/null; then
             cxx_compiler="clang++-$i"
             c_compiler="clang-$i"