Skip to content

Commit 144618b

Browse files
committed
src/script/lib-build.sh: clang should > 12.
Signed-off-by: Rongqi Sun <[email protected]>
1 parent 49c2749 commit 144618b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/script/lib-build.sh

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function discover_compiler() {
6464
local cxx_compiler=g++
6565
local c_compiler=gcc
6666
# ubuntu/debian ci builds prefer clang
67-
for i in {17..10}; do
67+
for i in {17..12}; do
6868
if type -t "clang-$i" > /dev/null; then
6969
cxx_compiler="clang++-$i"
7070
c_compiler="clang-$i"

0 commit comments

Comments
 (0)