about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorJohannes Nixdorf <mixi@exherbo.org>2018-04-16 19:32:19 +0200
committerJohannes Nixdorf <mixi@shadowice.org>2018-04-20 11:07:24 +0200
commitb92e6c3de0fcb6ca800a36e394bc4b49826d5f63 (patch)
tree0d8d22cf74387460e158cd1e0d9b86292a0bda72 /src/bootstrap
parent257d43d0d580dc5e92a4aa4bebbd2bf5f04bbcae (diff)
downloadrust-b92e6c3de0fcb6ca800a36e394bc4b49826d5f63.tar.gz
rust-b92e6c3de0fcb6ca800a36e394bc4b49826d5f63.zip
Disable auto-detection of libxml2 when compiling llvm.
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/native.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bootstrap/native.rs b/src/bootstrap/native.rs
index 2c2cf74d979..d952cb5bfc4 100644
--- a/src/bootstrap/native.rs
+++ b/src/bootstrap/native.rs
@@ -149,6 +149,7 @@ impl Step for Llvm {
            .define("WITH_POLLY", "OFF")
            .define("LLVM_ENABLE_TERMINFO", "OFF")
            .define("LLVM_ENABLE_LIBEDIT", "OFF")
+           .define("LLVM_ENABLE_LIBXML2", "OFF")
            .define("LLVM_PARALLEL_COMPILE_JOBS", builder.jobs().to_string())
            .define("LLVM_TARGET_ARCH", target.split('-').next().unwrap())
            .define("LLVM_DEFAULT_TARGET_TRIPLE", target);