From 227fc437ca12393286b4d8954af9b4b6b022267f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=BChnel?= Date: Tue, 4 Feb 2020 10:52:13 +0000 Subject: [PATCH] reduced projects for diagnosis --- scripts/run_cmake.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/run_cmake.ps1 b/scripts/run_cmake.ps1 index 678b19c..bc6de4f 100644 --- a/scripts/run_cmake.ps1 +++ b/scripts/run_cmake.ps1 @@ -23,7 +23,8 @@ param ( # that were modified in the working copy if ($projects -eq "default") { # These are the default projects for windows - $LLVM_ENABLE_PROJECTS="clang;clang-tools-extra;lld;mlir" + # stripped: ;libcxx;libc;lld;mlir;compiler-rt;libcxxabi + $LLVM_ENABLE_PROJECTS="clang;clang-tools-extra" } 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","")