[llvm-commits] [llvm] r43127 - /llvm/trunk/lib/Support/Makefile
Chris Lattner
sabre at nondot.org
Thu Oct 18 08:57:29 PDT 2007
Author: lattner
Date: Thu Oct 18 10:57:29 2007
New Revision: 43127
URL: http://llvm.org/viewvc/llvm-project?rev=43127&view=rev
Log:
This requires rtti info because tblgen uses commandline,
and tblgen requires rtti.
Modified:
llvm/trunk/lib/Support/Makefile
Modified: llvm/trunk/lib/Support/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/Makefile?rev=43127&r1=43126&r2=43127&view=diff
==============================================================================
--- llvm/trunk/lib/Support/Makefile (original)
+++ llvm/trunk/lib/Support/Makefile Thu Oct 18 10:57:29 2007
@@ -1,4 +1,4 @@
-##===- lib/Support/Makefile ------------------------------*- Makefile -*-===##
+##===- lib/Support/Makefile --------------------------------*- Makefile -*-===##
#
# The LLVM Compiler Infrastructure
#
@@ -11,4 +11,7 @@
LIBRARYNAME = LLVMSupport
BUILD_ARCHIVE = 1
+## FIXME: This only requires RTTI because tblgen uses it. Fix that.
+REQUIRES_RTTI = 1
+
include $(LEVEL)/Makefile.common
More information about the llvm-commits
mailing list