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","")