diff options
author | Simon Warta <[email protected]> | 2017-09-07 01:01:47 +0200 |
---|---|---|
committer | Simon Warta <[email protected]> | 2017-09-07 01:01:47 +0200 |
commit | 2f4cfb3f941166232fb5ecd85b8f30f0bf30d337 (patch) | |
tree | 3d5d26f16fecb2263cab826636f04b4e29d3c6fb | |
parent | 57f6557a346fe7f2607da866f342d5bcadc251f3 (diff) |
Do not fix number of digits in first appleclang version component
this will soon exceed 999.
-rwxr-xr-x | configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py index 7bfd50645..fea687a87 100755 --- a/configure.py +++ b/configure.py @@ -2712,7 +2712,7 @@ class CompilerDetector(object): '900': '4.0', } - match = re.search(r'Apple LLVM version [0-9\.]+ \(clang-([0-9]{3})\.', cc_output) + match = re.search(r'Apple LLVM version [0-9\.]+ \(clang-([0-9]+)\.', cc_output) if match: apple_clang_version = match.group(1) if apple_clang_version in xcode_version_to_clang: |