Skip to content

Commit

Permalink
Support combination MSVC + Ninja
Browse files Browse the repository at this point in the history
  • Loading branch information
petrochenkov committed Mar 4, 2017
1 parent f218709 commit a7c8afd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions src/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/bootstrap/lib.rs
Expand Up @@ -740,7 +740,7 @@ impl Build {
} else {
let base = self.llvm_out(&self.config.build).join("build");
let exe = exe("FileCheck", target);
if self.config.build.contains("msvc") {
if !self.config.ninja && self.config.build.contains("msvc") {
base.join("Release/bin").join(exe)
} else {
base.join("bin").join(exe)
Expand Down

0 comments on commit a7c8afd

Please sign in to comment.