removed libcxx
This commit is contained in:
parent
e653549be4
commit
50c20dc029
3 changed files with 7 additions and 2 deletions
|
@ -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]
|
||||
|
|
|
@ -70,3 +70,7 @@ excludedProjects:
|
|||
- llgo
|
||||
- libunwind
|
||||
- libcxxabi
|
||||
|
||||
defaultProjects:
|
||||
linux: clang;clang-tools-extra;libcxx;libcxxabi;lld;libunwind;mlir
|
||||
windows: clang;clang-tools-extra;lld;mlir
|
||||
|
|
|
@ -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","")
|
||||
|
|
Loading…
Reference in a new issue