1
0
Fork 0

removed libc

This commit is contained in:
Christian Kühnel 2020-02-04 07:57:13 +01:00
parent 9a97377a5a
commit e653549be4

View file

@ -23,7 +23,7 @@ param (
# that were modified in the working copy
if ($projects -eq "default") {
# TODO: make this configurable per OS/compiler/...
$LLVM_ENABLE_PROJECTS="clang;clang-tools-extra;libcxx;libc;lld;mlir"
$LLVM_ENABLE_PROJECTS="clang;clang-tools-extra;libcxx;lld;mlir"
} 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","")