From 6fa9e7c496776800cfe963c1ca1a6b64a7f89908 Mon Sep 17 00:00:00 2001 From: "Alon Zakai (kripken)" Date: Wed, 12 Jun 2019 20:07:49 -0700 Subject: [PATCH] disable libtinfo on fastcomp as well --- src/build.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/build.py b/src/build.py index 0cd2a09e..789d5231 100755 --- a/src/build.py +++ b/src/build.py @@ -959,6 +959,9 @@ def Fastcomp(): '-DLLVM_INSTALL_TOOLCHAIN_ONLY=ON', '-DLLVM_TARGETS_TO_BUILD=X86;JSBackend', '-DLLVM_ENABLE_ASSERTIONS=ON', + # linking libtinfo dynamically causes problems on some linuxes, + # https://github.com/emscripten-core/emsdk/issues/252 + '-DLLVM_ENABLE_TERMINFO=0', ('-DLLVM_EXTERNAL_CLANG_SOURCE_DIR=%s' % GetSrcDir('emscripten-fastcomp-clang')) ])