[LNT] r239516 - [LNT] Detect Debian Clang compiler.

Charlie Turner charlie.turner at arm.com
Thu Jun 11 02:28:19 PDT 2015


Author: chatur01
Date: Thu Jun 11 04:28:19 2015
New Revision: 239516

URL: http://llvm.org/viewvc/llvm-project?rev=239516&view=rev
Log:
[LNT] Detect Debian Clang compiler.


Modified:
    lnt/trunk/lnt/testing/util/compilers.py

Modified: lnt/trunk/lnt/testing/util/compilers.py
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/testing/util/compilers.py?rev=239516&r1=239515&r2=239516&view=diff
==============================================================================
--- lnt/trunk/lnt/testing/util/compilers.py (original)
+++ lnt/trunk/lnt/testing/util/compilers.py Thu Jun 11 04:28:19 2015
@@ -120,7 +120,7 @@ def get_cc_info(path, cc_flags=[]):
             cc_src_tag, = m.groups()
         else:
             error('unable to determine gcc build version: %r' % cc_build_string)
-    elif (cc_name in ('clang', 'LLVM', 'Apple clang', 'Apple LLVM') and
+    elif (cc_name in ('clang', 'LLVM', 'Debian clang', 'Apple clang', 'Apple LLVM') and
           (cc_extra == '' or 'based on LLVM' in cc_extra or
            (cc_extra.startswith('(') and cc_extra.endswith(')')))):
         llvm_capable = True





More information about the llvm-commits mailing list