From 597e96b5493151bb4196b5711548b32c8192aae4 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Sat, 21 Sep 2013 18:01:11 -0700 Subject: [PATCH] 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. --- configure | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure b/configure index 2b024057403..c918cd73448 100755 --- a/configure +++ b/configure @@ -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")