From 8dc2e288aca23799e6039e480c81ac47d80513d7 Mon Sep 17 00:00:00 2001
From: Chris Lattner <sabre@nondot.org>
Date: Thu, 18 Oct 2007 15:57:29 +0000
Subject: [PATCH] This requires rtti info because tblgen uses commandline, and
 tblgen requires rtti.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43127 91177308-0d34-0410-b5e6-96231b3b80d8
---
 lib/Support/Makefile | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/lib/Support/Makefile b/lib/Support/Makefile
index af2776cbfa3..f39b872be49 100644
--- a/lib/Support/Makefile
+++ b/lib/Support/Makefile
@@ -1,4 +1,4 @@
-##===- lib/Support/Makefile ------------------------------*- Makefile -*-===##
+##===- lib/Support/Makefile --------------------------------*- Makefile -*-===##
 # 
 #                     The LLVM Compiler Infrastructure
 #
@@ -11,4 +11,7 @@ LEVEL = ../..
 LIBRARYNAME = LLVMSupport
 BUILD_ARCHIVE = 1
 
+## FIXME: This only requires RTTI because tblgen uses it.  Fix that.
+REQUIRES_RTTI = 1
+
 include $(LEVEL)/Makefile.common