mirror of https://github.com/rust-lang/rust.git
Pass --disable-terminfo to LLVM's configure script. Closes #9334
The right way to link to terminfo varies by linux distribution, so this is making our snapshots less compatible.
This commit is contained in:
parent
5b3dfb0fe8
commit
597e96b549
|
@ -845,6 +845,9 @@ do
|
|||
|
||||
# Disable unused LLVM features
|
||||
LLVM_OPTS="$LLVM_DBG_OPTS $LLVM_ASSERTION_OPTS --disable-docs --enable-bindings=none"
|
||||
# Disable term-info, linkage of which comes in multiple forms,
|
||||
# making our snapshots incompatible (#9334)
|
||||
LLVM_OPTS="$LLVM_OPTS --disable-terminfo"
|
||||
|
||||
case "$CFG_C_COMPILER" in
|
||||
("ccache clang")
|
||||
|
|
Loading…
Reference in New Issue