[LLVMdev] verbose check-all with cmake?

NAKAMURA Takumi geek4civic at gmail.com
Mon Oct 28 01:23:46 PDT 2013


Greg,

I suppose you'd like to run lit with -v.

Makefiles generated by cmake are out of control by arguments on make(1).

I suggest;

1) Use llvm-lit.

  $ bin/llvm-lit -v test tools/clang/test ...

  Yeah, it doesn't emulate implicit "check-all"...

2) Reconfigure CMake with LLVM_LIT_ARGS

  $ cmake -DLLVM_LIT_ARGS=-v

  You may change it (in CMakeCache.txt) with "make edit_cache",
ccmake(1) or cmake-gui.exe.

HTH, Takumi

2013/10/26 Greg Fitzgerald <garious at gmail.com>:
> Is there an equivalent "make check-all VERBOSE=1" in the CMake build?
> I'm looking to see the full list of unit tests and the result of each.
>
> Thanks,
> Greg
> _______________________________________________
> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu         http://llvm.cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev



More information about the llvm-dev mailing list