From 9a97377a5af209a1270e86544039814c96353a30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=BChnel?= Date: Tue, 4 Feb 2020 07:33:06 +0100 Subject: [PATCH] reduced projects for windows --- 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 d153c00..ca4b5fb 100644 --- a/scripts/run_cmake.ps1 +++ b/scripts/run_cmake.ps1 @@ -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" + # TODO: make this configurable per OS/compiler/... + $LLVM_ENABLE_PROJECTS="clang;clang-tools-extra;libcxx;libc;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","")