Skip to content

Commit f90740d

Browse files
krytarowskiBridgeAR
authored andcommitted
build: allow clang 10+ in configure.py
Detected on NetBSD/amd64. Fixes: #29536 PR-URL: #29541 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: David Carlier <[email protected]> Reviewed-By: Jiawen Geng <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Richard Lau <[email protected]>
1 parent 70a0c17 commit f90740d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,7 @@ def get_nasm_version(asm):
724724

725725
def get_llvm_version(cc):
726726
return get_version_helper(
727-
cc, r"(^(?:FreeBSD )?clang version|based on LLVM) ([3-9]\.[0-9]+)")
727+
cc, r"(^(?:FreeBSD )?clang version|based on LLVM) ([0-9]+\.[0-9]+)")
728728

729729
def get_xcode_version(cc):
730730
return get_version_helper(

0 commit comments

Comments
 (0)