[libc++][patch] Fix a lit.cfg bug: the CMake build compiler is ignored

Michael Gottesman mgottesman at apple.com
Mon Jul 29 12:58:43 PDT 2013


Hey Sebastian.

Your patch looks fine to me except that you should indent in the inferring section so it looks more like this:

 if cxx_under_test is None:
     cxx_under_test = getattr(config, 'cxx_under_test', None)
 
<-- Indent more in starting here
  +if cxx_under_test is None:
       # If no specific cxx_under_test was given, attempt to infer it as clang++.
       clangxx = lit.util.which('clang++', config.environment['PATH'])
       if clangxx is not None:
           cxx_under_test = clangxx
           lit.note("inferred cxx_under_test as: %r" % (cxx_under_test,))
<-- And stopping here.

Otherwise if cxx_under_test is initially not None, you are checking one more time that cxx_under_test is None than you need to.

Michael

On Jul 27, 2013, at 12:53 PM, Sebastian Redl <sebastian.redl at getdesigned.at> wrote:

> <lit.patch>




More information about the cfe-commits mailing list