[cmake] Make LIT_COMMAND configurable and improve fallback support
authorMichal Gorny <mgorny@gentoo.org>
Tue, 4 Oct 2016 20:25:37 +0000 (20:25 +0000)
committerMichal Gorny <mgorny@gentoo.org>
Tue, 4 Oct 2016 20:25:37 +0000 (20:25 +0000)
commitbab7943c6cf41a5f751cd64faa32622d58224c4e
tree0c74f0a122651b23069932f7d2828c5d5b838fba
parent85d1f0b6104675ad46a0d2551ed11a8bc3467d61
[cmake] Make LIT_COMMAND configurable and improve fallback support

Make LIT_COMMAND configurable, use source tree only when actually
available and extend the default search to other common executable names
'lit.py' and 'lit', in order to increase uniformity between all LLVM
projects and support using installed lit.

Changing the conditional used to determine whether in-tree or external
lit is being used covers the case when LLVM_MAIN_SRC_DIR is defined but
does not exist (anymore). In this case, the functions falls back to
looking for installed lit rather than attempting to use a non-existing
path. The same conditional is used in clang already.

Making LIT_COMMAND a cache variable in case the source tree variant is
used serves two purposes. Firstly, it increases uniformity between
the two branches since find_program() implicitly makes LIT_COMMAND
a cache variable. Secondly, it allows overriding the lit executable used
to run the tests when the LLVM source tree is provided. Gentoo is
planning to use this to use installed (and byte-compiled) lit instead of
re-compiling it in every LLVM project.

Extending default search is meant to increase uniformity between
different LLVM projects. The 'lit.py' name is already used by a few of
them, and 'lit' is the name used by utils/lit/setup.py when installing.

Differential Revision: https://reviews.llvm.org/D25076

llvm-svn: 283247
llvm/cmake/modules/AddLLVM.cmake