Skip to content

Commit 5a78b54

Browse files
committed
Disable zlib/libffi when configuring LLVM
This should help bring fewer dependencies in to the snapshots. Closes #9397
1 parent 5b6ef09 commit 5a78b54

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Diff for: configure

+2
Original file line numberDiff line numberDiff line change
@@ -848,6 +848,8 @@ do
848848
# Disable term-info, linkage of which comes in multiple forms,
849849
# making our snapshots incompatible (#9334)
850850
LLVM_OPTS="$LLVM_OPTS --disable-terminfo"
851+
# Try to have LLVM pull in as few dependencies as possible (#9397)
852+
LLVM_OPTS="$LLVM_OPTS --disable-zlib --disable-libffi"
851853

852854
case "$CFG_C_COMPILER" in
853855
("ccache clang")

Diff for: src/rustllvm/llvm-auto-clean-trigger

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# If this file is modified, then llvm will be forcibly cleaned and then rebuilt.
22
# The actual contents of this file do not matter, but to trigger a change on the
33
# build bots then the contents should be changed so git updates the mtime.
4-
2013-09-22
4+
2013-09-23

0 commit comments

Comments
 (0)