Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 38EBF200D08 for ; Thu, 21 Sep 2017 15:49:10 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 3785E1609D0; Thu, 21 Sep 2017 13:49:10 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 7CDAE1609B8 for ; Thu, 21 Sep 2017 15:49:09 +0200 (CEST) Received: (qmail 47924 invoked by uid 500); 21 Sep 2017 13:49:08 -0000 Mailing-List: contact commits-help@arrow.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@arrow.apache.org Delivered-To: mailing list commits@arrow.apache.org Received: (qmail 47915 invoked by uid 99); 21 Sep 2017 13:49:08 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Sep 2017 13:49:08 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 8FB18F5674; Thu, 21 Sep 2017 13:49:08 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: wesm@apache.org To: commits@arrow.apache.org Message-Id: <77529d31803a40c9ac079ca8f16a48d5@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: arrow git commit: ARROW-1591: C++: Xcode 9 is not correctly detected Date: Thu, 21 Sep 2017 13:49:08 +0000 (UTC) archived-at: Thu, 21 Sep 2017 13:49:10 -0000 Repository: arrow Updated Branches: refs/heads/master d154c1036 -> c470c9c2d ARROW-1591: C++: Xcode 9 is not correctly detected Author: Uwe L. Korn Closes #1121 from xhochy/ARROW-1591 and squashes the following commits: 0b3a11a [Uwe L. Korn] ARROW-1591: C++: Xcode 9 is not correctly detected Project: http://git-wip-us.apache.org/repos/asf/arrow/repo Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/c470c9c2 Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/c470c9c2 Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/c470c9c2 Branch: refs/heads/master Commit: c470c9c2d39ff81fff5ee3c5dc6e21d03da5f304 Parents: d154c10 Author: Uwe L. Korn Authored: Thu Sep 21 09:49:02 2017 -0400 Committer: Wes McKinney Committed: Thu Sep 21 09:49:02 2017 -0400 ---------------------------------------------------------------------- cpp/cmake_modules/CompilerInfo.cmake | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/arrow/blob/c470c9c2/cpp/cmake_modules/CompilerInfo.cmake ---------------------------------------------------------------------- diff --git a/cpp/cmake_modules/CompilerInfo.cmake b/cpp/cmake_modules/CompilerInfo.cmake index 4a18376..a1b4701 100644 --- a/cpp/cmake_modules/CompilerInfo.cmake +++ b/cpp/cmake_modules/CompilerInfo.cmake @@ -68,6 +68,11 @@ elseif("${COMPILER_VERSION_FULL}" MATCHES ".*clang-8") set(COMPILER_FAMILY "clang") set(COMPILER_VERSION "3.8.0svn") +# clang on Mac OS X, XCode 8. +elseif("${COMPILER_VERSION_FULL}" MATCHES ".*clang-9") + set(COMPILER_FAMILY "clang") + set(COMPILER_VERSION "4.0.0svn") + # gcc elseif("${COMPILER_VERSION_FULL_LOWER}" MATCHES ".*gcc[ -]version.*") set(COMPILER_FAMILY "gcc")