1
0
Fork 0

enabled more projects again

This commit is contained in:
Christian Kühnel 2020-02-04 15:55:04 +00:00
parent 1c8f5b3af3
commit 25f69e6646

View file

@ -23,8 +23,7 @@ param (
# that were modified in the working copy
if ($projects -eq "default") {
# These are the default projects for windows
# stripped: ;libcxx;libc;lld;mlir;compiler-rt;libcxxabi
$LLVM_ENABLE_PROJECTS="clang;clang-tools-extra"
$LLVM_ENABLE_PROJECTS="clang;clang-tools-extra;libcxx;libc;lld;mlir;compiler-rt;libcxxabi"
} elseif ($projects -eq "detect") {
$LLVM_ENABLE_PROJECTS = (git diff | python ${PSScriptRoot}\choose_projects.py . ) | Out-String
$LLVM_ENABLE_PROJECTS = $LLVM_ENABLE_PROJECTS.replace("`n","").replace("`r","")