1
0
Fork 0

removed libcxx

This commit is contained in:
Christian Kühnel 2020-02-04 08:29:43 +01:00
parent e653549be4
commit 50c20dc029
3 changed files with 7 additions and 2 deletions

View file

@ -41,6 +41,7 @@ class ChooseProjects:
def __init__(self, llvm_dir: str):
self.llvm_dir = llvm_dir
self.defaultProjects = dict() # type: Dict[str, Dict[str, str]]
self.dependencies = dict() # type: Dict[str,List[str]]
self.usages = dict() # type: Dict[str,List[str]]
self.all_projects = [] # type: List[str]

View file

@ -69,4 +69,8 @@ excludedProjects:
- lldb
- llgo
- libunwind
- libcxxabi
- libcxxabi
defaultProjects:
linux: clang;clang-tools-extra;libcxx;libcxxabi;lld;libunwind;mlir
windows: clang;clang-tools-extra;lld;mlir

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;lld;mlir"
$LLVM_ENABLE_PROJECTS="clang;clang-tools-extra;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","")