aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2018-12-31 11:20:04 -0500
committerJack Lloyd <[email protected]>2018-12-31 11:20:04 -0500
commitd594fce9591b93fbdfc8079af86a62c1bde55b64 (patch)
treedc30779733896e0361dbb67da3938ee20ff61f0a /configure.py
parent97fc7dcf2c76df21bbd14f06224465fa6820fa69 (diff)
Fixes for XLC
XLC 16 changed which macros are used to identify it. Older versions of XLC didn't work correctly anyway (#1581 #1509 etc), so just drop support for recognizing those versions.
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py
index 4ae2678e5..bf5151dee 100755
--- a/configure.py
+++ b/configure.py
@@ -2960,7 +2960,7 @@ def calculate_cc_min_version(options, ccinfo, source_paths):
'msvc': r'^ *MSVC ([0-9]{2})([0-9]{2})$',
'gcc': r'^ *GCC ([0-9]+) ([0-9]+)$',
'clang': r'^ *CLANG ([0-9]+) ([0-9]+)$',
- 'xlc': r'^ *XLC (0x[0-9a-fA-F]{2})([0-9a-fA-F]{2})$'
+ 'xlc': r'^ *XLC ([0-9]+) ([0-9]+)$',
}
if ccinfo.basename not in version_patterns: