diff options
author | Sean Silva <silvas@purdue.edu> | 2012-10-10 20:25:45 +0000 |
---|---|---|
committer | Sean Silva <silvas@purdue.edu> | 2012-10-10 20:25:45 +0000 |
commit | dbd91975742f4a6e797887f861c414cdd024255c (patch) | |
tree | a8bf237a8c7eee2173a2c20f0ee4a6d01298a439 | |
parent | 1ab46323089f9a836a510521aab55ff958b67150 (diff) |
tblgen: Build clang-tblgen without RTTI.
clang-tblgen no longer needs RTTI!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@165650 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | utils/TableGen/CMakeLists.txt | 1 | ||||
-rw-r--r-- | utils/TableGen/Makefile | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/utils/TableGen/CMakeLists.txt b/utils/TableGen/CMakeLists.txt index d5748bc2ce..19b4b5beef 100644 --- a/utils/TableGen/CMakeLists.txt +++ b/utils/TableGen/CMakeLists.txt @@ -1,5 +1,4 @@ set(LLVM_REQUIRES_EH 1) -set(LLVM_REQUIRES_RTTI 1) set(LLVM_LINK_COMPONENTS Support) add_tablegen(clang-tblgen CLANG diff --git a/utils/TableGen/Makefile b/utils/TableGen/Makefile index 9790efc061..7f606bbc3e 100644 --- a/utils/TableGen/Makefile +++ b/utils/TableGen/Makefile @@ -11,7 +11,6 @@ LEVEL = ../../../.. TOOLNAME = clang-tblgen USEDLIBS = LLVMTableGen.a LLVMSupport.a REQUIRES_EH := 1 -REQUIRES_RTTI := 1 # This tool has no plugins, optimize startup time. TOOL_NO_EXPORTS = 1 |