Skip to content

Commit

Permalink
Rollup merge of rust-lang#62752 - nikic:llvm-disable-z3, r=alexcrichton
Browse files Browse the repository at this point in the history
Disable Z3 in LLVM build

Avoid building LLVM with Z3 if it happens to be installed.

Fixes rust-lang#62750.

r? @alexcrichton
  • Loading branch information
Mark-Simulacrum authored Jul 18, 2019
2 parents 9c08b2b + f8eb2a6 commit c4977ef
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/bootstrap/native.rs
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ impl Step for Llvm {
.define("WITH_POLLY", "OFF")
.define("LLVM_ENABLE_TERMINFO", "OFF")
.define("LLVM_ENABLE_LIBEDIT", "OFF")
.define("LLVM_ENABLE_Z3_SOLVER", "OFF")
.define("LLVM_PARALLEL_COMPILE_JOBS", builder.jobs().to_string())
.define("LLVM_TARGET_ARCH", target.split('-').next().unwrap())
.define("LLVM_DEFAULT_TARGET_TRIPLE", target);
Expand Down

0 comments on commit c4977ef

Please sign in to comment.