From 5a78b54586a07afa65822aa2d079da334ae70ca3 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Mon, 23 Sep 2013 10:06:29 -0700 Subject: [PATCH] Disable zlib/libffi when configuring LLVM This should help bring fewer dependencies in to the snapshots. Closes #9397 --- configure | 2 ++ src/rustllvm/llvm-auto-clean-trigger | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/configure b/configure index c918cd73448db..55f5afda1a014 100755 --- a/configure +++ b/configure @@ -848,6 +848,8 @@ do # Disable term-info, linkage of which comes in multiple forms, # making our snapshots incompatible (#9334) LLVM_OPTS="$LLVM_OPTS --disable-terminfo" + # Try to have LLVM pull in as few dependencies as possible (#9397) + LLVM_OPTS="$LLVM_OPTS --disable-zlib --disable-libffi" case "$CFG_C_COMPILER" in ("ccache clang") diff --git a/src/rustllvm/llvm-auto-clean-trigger b/src/rustllvm/llvm-auto-clean-trigger index 745dec8c70cc8..01a5eaefa89b5 100644 --- a/src/rustllvm/llvm-auto-clean-trigger +++ b/src/rustllvm/llvm-auto-clean-trigger @@ -1,4 +1,4 @@ # If this file is modified, then llvm will be forcibly cleaned and then rebuilt. # The actual contents of this file do not matter, but to trigger a change on the # build bots then the contents should be changed so git updates the mtime. -2013-09-22 +2013-09-23