diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2010-11-11 04:09:35 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2010-11-11 04:09:35 +0000 |
commit | e7ae70b137f9944da30494a45dc660fa60b80b66 (patch) | |
tree | 80232b6d5bd2f9e434646b7408ed7691a0d4c582 /docs | |
parent | 3f2d13c98eb04962bf6fcfdcc6f62789bc820d79 (diff) | |
download | external_llvm-e7ae70b137f9944da30494a45dc660fa60b80b66.zip external_llvm-e7ae70b137f9944da30494a45dc660fa60b80b66.tar.gz external_llvm-e7ae70b137f9944da30494a45dc660fa60b80b66.tar.bz2 |
CMake: Add the new option "LLVM_LIT_ARGS".
Defaults:
if (MSVC OR XCODE): "-sv --no-progress-bar"
else: "-sv"
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118776 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/CMake.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/CMake.html b/docs/CMake.html index 2f2af24..e2dac2e 100644 --- a/docs/CMake.html +++ b/docs/CMake.html @@ -325,6 +325,13 @@ <dd>Full path to a native TableGen executable (usually named <i>tblgen</i>). This is intented for cross-compiling: if the user sets this variable, no native TableGen will be created.</dd> + + <dt><b>LLVM_LIT_ARGS</b>:STRING</dt> + <dd>Arguments given to lit. + <tt>make check</tt> and <tt>make clang-test</tt> are affected. + By default, <tt>"-sv --no-progress-bar"</tt> + on Visual C++ and Xcode, + <tt>"-sv"</tt> on others.</dd> </dl> </div> |