[Lldb-commits] [PATCH] D45333: WIP: [LIT] Have lit run the lldb test suite

Alberto Magni via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Fri Apr 20 02:07:02 PDT 2018


alberto_magni added a comment.

Hi Jonas,

This change is causing a cmake generation-time error on Windows when using Visual Studio as generator:
-G "Visual Studio 15 2017 Win64" -Thost=x64

The error is:

  CMake Error in tools/lldb/test/CMakeLists.txt:
    Evaluation file to be written multiple times for different configurations
    or languages with different content:
  
      D:/build/master_win/tools/lldb/test/../lit/Suite/lit.site.cfg
  
  
  CMake Error in tools/lldb/test/CMakeLists.txt:
    Evaluation file to be written multiple times for different configurations
    or languages with different content:
  
      D:/build/master_win/tools/lldb/test/../lit/Suite/lit.site.cfg
  
  
  CMake Error in tools/lldb/test/CMakeLists.txt:
    Evaluation file to be written multiple times for different configurations
    or languages with different content:
  
      D:/build/master_win/tools/lldb/test/../lit/Suite/lit.site.cfg

… and so on

Notice everything runs fine when using Ninja as a Generator and clang-cl.exe as compiler:

-G Ninja -DCMAKE_CXX_COMPILER=clang-cl.exe -DCMAKE_C_COMPILER=clang-cl.exe

Would it be possible for you to repro this ? 
Let me know if I can help with this.


Repository:
  rL LLVM

https://reviews.llvm.org/D45333





More information about the lldb-commits mailing list