diff options
author | Chris Lattner <sabre@nondot.org> | 2007-10-18 15:57:29 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-10-18 15:57:29 +0000 |
commit | 1b88e3c2dd984bca5b292c56e98aab53661ab7e8 (patch) | |
tree | 6aa7229d82bb729ff3fe9c098dcd2878ad9a703b /llvm/lib/Support | |
parent | 604b2314c87e78ca47d62e474afaaa8e2277ee35 (diff) | |
download | bcm5719-llvm-1b88e3c2dd984bca5b292c56e98aab53661ab7e8.tar.gz bcm5719-llvm-1b88e3c2dd984bca5b292c56e98aab53661ab7e8.zip |
This requires rtti info because tblgen uses commandline,
and tblgen requires rtti.
llvm-svn: 43127
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r-- | llvm/lib/Support/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/llvm/lib/Support/Makefile b/llvm/lib/Support/Makefile index af2776cbfa3..f39b872be49 100644 --- a/llvm/lib/Support/Makefile +++ b/llvm/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 |