Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
ci: fix execution condition for install-clang
  • Loading branch information
pietroalbini committed Oct 28, 2019
1 parent 9c44ca2 commit c854c44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ci/scripts/install-clang.sh
Expand Up @@ -17,7 +17,7 @@ if isMacOS; then
# Configure `AR` specifically so rustbuild doesn't try to infer it as
# `clang-ar` by accident.
ciCommandSetEnv AR "ar"
elif isWindows; then
elif isWindows && [[ -z ${MINGW_URL+x} ]]; then
# If we're compiling for MSVC then we, like most other distribution builders,
# switch to clang as the compiler. This'll allow us eventually to enable LTO
# amongst LLVM and rustc. Note that we only do this on MSVC as I don't think
Expand Down

0 comments on commit c854c44

Please sign in to comment.