1
0
Fork 0

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:
Martin Storsjö 2021-03-17 13:13:38 +02:00 committed by Mikhail Goncharov
parent f53c519843
commit dee182ad1c

View file

@ -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