From 25f12dacbd2d447ee2340aa0e18da4569bcc319e Mon Sep 17 00:00:00 2001 From: Mikhail Goncharov Date: Tue, 21 Sep 2021 14:30:29 +0200 Subject: [PATCH] disable libunwind on windows --- scripts/pipeline_main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pipeline_main.py b/scripts/pipeline_main.py index dc9e926..d64f9c9 100755 --- a/scripts/pipeline_main.py +++ b/scripts/pipeline_main.py @@ -49,7 +49,7 @@ if __name__ == '__main__': # 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', 'llvm;clang;clang-tools-extra;libc;libcxx;libcxxabi;lld;libunwind;mlir;polly;flang'))) + os.getenv('ph_projects', 'llvm;clang;clang-tools-extra;libc;libcxx;libcxxabi;lld;mlir;polly;flang'))) steps.extend(bazel([], force=True)) if os.getenv('ph_skip_generated') is None: e = os.environ.copy()