From abb35c5f85491d8193afe5c5ee2ebce61377f98e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=BChnel?= Date: Wed, 5 Feb 2020 10:49:12 +0000 Subject: [PATCH] removed compiler-rt --- scripts/run_cmake.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run_cmake.ps1 b/scripts/run_cmake.ps1 index 06d6c32..1be2965 100644 --- a/scripts/run_cmake.ps1 +++ b/scripts/run_cmake.ps1 @@ -23,7 +23,7 @@ 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;libcxx;libc;lld;mlir;compiler-rt;libcxxabi" + $LLVM_ENABLE_PROJECTS="clang;clang-tools-extra;libcxx;libc;lld;mlir;libcxxabi" } 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","")