From 638b51488f444213eb9430b34a833905274cd424 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Fri, 9 Dec 2011 00:57:17 -0600 Subject: [PATCH] Disable unused features in the LLVM build. Issue #1274 - should make the build a wee bit faster. --- configure | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure b/configure index 009e24059cf..6af66c791bf 100755 --- a/configure +++ b/configure @@ -473,7 +473,8 @@ do LLVM_DBG_OPTS="--enable-optimized" LLVM_INST_DIR=$LLVM_BUILD_DIR/Release+Asserts fi - LLVM_OPTS="$LLVM_DBG_OPTS --disable-docs" + # Disable unused LLVM features + LLVM_OPTS="$LLVM_DBG_OPTS --disable-docs --disable-jit --enable-bindings=none --disable-threads --disable-pthreads" LLVM_CXX_32="g++ -m32" LLVM_CC_32="gcc -m32"