Skip to content

Commit 597e96b

Browse files
committed
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.
1 parent 5b3dfb0 commit 597e96b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

configure

+3
Original file line numberDiff line numberDiff line change
@@ -845,6 +845,9 @@ do
845845

846846
# Disable unused LLVM features
847847
LLVM_OPTS="$LLVM_DBG_OPTS $LLVM_ASSERTION_OPTS --disable-docs --enable-bindings=none"
848+
# Disable term-info, linkage of which comes in multiple forms,
849+
# making our snapshots incompatible (#9334)
850+
LLVM_OPTS="$LLVM_OPTS --disable-terminfo"
848851

849852
case "$CFG_C_COMPILER" in
850853
("ccache clang")

0 commit comments

Comments
 (0)