From dd088afd4323cbaad3c6e3692e7d52658d1f2de6 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Thu, 28 Mar 2013 18:19:14 -0700 Subject: [PATCH] Stop building clang Removing it from the tree is an ordeal and there is no official way to disable clang via LLVM's Makefiles so this edits the Makefile in llvm/tools after running configure. --- configure | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure b/configure index 287705a0e58..71beb8214b9 100755 --- a/configure +++ b/configure @@ -881,6 +881,10 @@ do ;; esac need_ok "LLVM configure failed" + + # Hack the tools Makefile to turn off the clang build + sed -i 's/clang//g' tools/Makefile + cd $CFG_BUILD_DIR fi