From 2f1703d161acd1608780f0e699f29340b90382d0 Mon Sep 17 00:00:00 2001 From: Martin Date: Mon, 18 Jan 2016 04:44:35 +0100 Subject: [PATCH 1/2] Allow clang 7.x in configuration I'm using clang 7.2 which works just fine to compile Rust with, but was disallowed. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 0255b04caa316..07c9551951e1e 100755 --- a/configure +++ b/configure @@ -1035,7 +1035,7 @@ then if [ -n "$CFG_OSX_CLANG_VERSION" ] then case $CFG_OSX_CLANG_VERSION in - (7.0*) + (7.*) step_msg "found ok version of APPLE CLANG: $CFG_OSX_CLANG_VERSION" ;; (*) From da56967a3eaac0a556e818745dfc5a64d7dcf26a Mon Sep 17 00:00:00 2001 From: Martin Date: Mon, 18 Jan 2016 15:57:57 +0100 Subject: [PATCH 2/2] Enumerate acceptable clang versions --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 07c9551951e1e..287b7b352195c 100755 --- a/configure +++ b/configure @@ -1035,7 +1035,7 @@ then if [ -n "$CFG_OSX_CLANG_VERSION" ] then case $CFG_OSX_CLANG_VERSION in - (7.*) + (7.0* | 7.1* | 7.2*) step_msg "found ok version of APPLE CLANG: $CFG_OSX_CLANG_VERSION" ;; (*)