Skip to content

Commit

Permalink
Fix Windows LLVM issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuss committed Sep 29, 2021
1 parent 1149193 commit 0f47312
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/ci/scripts/install-clang.sh
Expand Up @@ -61,3 +61,9 @@ elif isWindows && [[ ${CUSTOM_MINGW-0} -ne 1 ]]; then
ciCommandSetEnv RUST_CONFIGURE_ARGS \
"${RUST_CONFIGURE_ARGS} --set llvm.clang-cl=$(pwd)/clang-rust/bin/clang-cl.exe"
fi

if isWindows; then
# GitHub image 20210928.2 added LLVM, but it is broken (and we don't want
# to use it anyways).
rm -rf /c/Program\ Files/LLVM
fi

0 comments on commit 0f47312

Please sign in to comment.