windows: Install LLVM/Clang in the docker image
The main LLVM build runs fine with MSVC itself, but building libcxx isn't supported with cl.exe, only with clang-cl. This shouldn't matter for the main LLVM build, as it still is configured to use CXX=cl (and even then, CMake defaults to cl if nothing is specified).
This commit is contained in:
parent
f53c519843
commit
dee182ad1c
1 changed files with 2 additions and 1 deletions
|
@ -42,7 +42,8 @@ RUN powershell -NoProfile -InputFormat None -Command `
|
|||
# and a few more that were not documented...
|
||||
RUN choco install -y ninja git python3 gnuwin activeperl
|
||||
RUN choco install -y cmake --version 3.15.4
|
||||
RUN choco install -y sccache
|
||||
# libcxx requires clang(-cl) to be available
|
||||
RUN choco install -y sccache llvm
|
||||
RUN pip install psutil
|
||||
|
||||
# install python dependencies for the scripts
|
||||
|
|
Loading…
Reference in a new issue