1
0
Fork 0

Merge branch 'master' of ssh://github.com/google/llvm-premerge-checks

This commit is contained in:
Christian Kühnel 2020-02-04 07:51:56 +00:00
commit 72d19f028d
3 changed files with 8 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

@ -22,7 +22,8 @@ param (
# if -DetectProjects is set the projects are detected based on the files
# that were modified in the working copy
if ($projects -eq "default") {
$LLVM_ENABLE_PROJECTS="clang;clang-tools-extra;libcxx;libcxxabi;lld;libunwind;mlir"
# These are the default projects for windows
$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","")