1
0
Fork 0

enable flang

This commit is contained in:
Mikhail Goncharov 2021-06-29 16:30:41 +02:00
parent ff4e998ef4
commit 4ec41ed8a8
2 changed files with 2 additions and 4 deletions

View file

@ -80,7 +80,6 @@ excludedProjects:
- openmp # TODO: check: kuhnel has trouble with the Perl installation
- debuginfo-tests # test failing
- polly # test failing
- flang # compilation failing with invalid compile arguments
# test stuck, needs to be killed manually: instrprof-multiprocess.test
- compiler-rt
linux:

View file

@ -25,19 +25,18 @@ steps_generators = [
if __name__ == '__main__':
scripts_refspec = os.getenv("ph_scripts_refspec", "main")
no_cache = os.getenv('ph_no_cache') is not None
projects = os.getenv('ph_projects', 'clang;clang-tools-extra;libc;libcxx;libcxxabi;lld;libunwind;mlir;openmp;polly')
log_level = os.getenv('ph_log_level', 'WARNING')
notify_emails = list(filter(None, os.getenv('ph_notify_emails', '').split(',')))
steps = []
steps.extend(generic_linux(
os.getenv('ph_projects', 'clang;clang-tools-extra;libc;libcxx;libcxxabi;lld;libunwind;mlir;openmp;polly'),
os.getenv('ph_projects', 'llvm;clang;clang-tools-extra;libc;libcxx;libcxxabi;lld;libunwind;mlir;openmp;polly;flang'),
False))
# FIXME: openmp is removed as it constantly fails.
# TODO: Make this project list be evaluated through "choose_projects"(? as now we define "all" and exclusions in
# two placess).
steps.extend(generic_windows(
os.getenv('ph_projects', 'clang;clang-tools-extra;libc;libcxx;libcxxabi;lld;libunwind;mlir;polly')))
os.getenv('ph_projects', 'llvm;clang;clang-tools-extra;libc;libcxx;libcxxabi;lld;libunwind;mlir;polly;flang')))
if os.getenv('ph_skip_generated') is None:
for gen in steps_generators: