You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running configure on stable and beta branches on macOS 10.12 with the Xcode 8 command line tools fails with the following:
configure: error: bad APPLE CLANG version: 8.0.0, need >=7.0
The master branch shouldn't have this issue, since configure doesn't seem to whitelist Apple clang versions any more. The following one-line patch[1] fixes this issue on stable/beta:
diff --git a/configure b/configure
index fdef550..7a7b2e4 100755
--- a/configure+++ b/configure@@ -1023,7 +1023,7 @@ then
if [ -n "$CFG_OSX_CLANG_VERSION" ]
then
case $CFG_OSX_CLANG_VERSION in
- (7.0* | 7.1* | 7.2* | 7.3*)+ (7.0* | 7.1* | 7.2* | 7.3* | 8.0*)
step_msg "found ok version of APPLE CLANG: $CFG_OSX_CLANG_VERSION"
;;
(*)
[1] filed an issue instead of a PR since the PR wouldn't be against master
The text was updated successfully, but these errors were encountered:
Ah yeah this should be fixed on master and we can be sure to backport the relevant change (#34383) to beta to ensure the next release (coming out next week) won't need that modification out of the box.
That's in the pipeline now so I'm gonna close this, but the next stable release should work just fine!
Running
configure
on stable and beta branches on macOS 10.12 with the Xcode 8 command line tools fails with the following:The master branch shouldn't have this issue, since configure doesn't seem to whitelist Apple clang versions any more. The following one-line patch[1] fixes this issue on stable/beta:
[1] filed an issue instead of a PR since the PR wouldn't be against master
The text was updated successfully, but these errors were encountered: