aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Support/Makefile
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-10-18 15:57:29 +0000
committerChris Lattner <sabre@nondot.org>2007-10-18 15:57:29 +0000
commit8dc2e288aca23799e6039e480c81ac47d80513d7 (patch)
tree85a00e35f757b3948273402da2e22f52383e9dc0 /lib/Support/Makefile
parent6c1ba31d6f238bb978e2c0f130725d46510cad4f (diff)
downloadexternal_llvm-8dc2e288aca23799e6039e480c81ac47d80513d7.zip
external_llvm-8dc2e288aca23799e6039e480c81ac47d80513d7.tar.gz
external_llvm-8dc2e288aca23799e6039e480c81ac47d80513d7.tar.bz2
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
Diffstat (limited to 'lib/Support/Makefile')
-rw-r--r--lib/Support/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/Support/Makefile b/lib/Support/Makefile
index af2776c..f39b872 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