Skip to content

Commit a7c8afd

Browse files
committed
Support combination MSVC + Ninja
1 parent f218709 commit a7c8afd

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/bootstrap/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -740,7 +740,7 @@ impl Build {
740740
} else {
741741
let base = self.llvm_out(&self.config.build).join("build");
742742
let exe = exe("FileCheck", target);
743-
if self.config.build.contains("msvc") {
743+
if !self.config.ninja && self.config.build.contains("msvc") {
744744
base.join("Release/bin").join(exe)
745745
} else {
746746
base.join("bin").join(exe)

0 commit comments

Comments
 (0)