diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2012-02-22 19:19:01 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2012-02-22 19:19:01 +0000 |
commit | c862da47e39b0c1800f8ed2c33ce4176e50c7b44 (patch) | |
tree | d8f04efcefeb787690ebd13c2b9f07b1ed0dc819 | |
parent | c4360f84923780821ebb3cf30f31f419e5d989bb (diff) | |
download | bcm5719-llvm-c862da47e39b0c1800f8ed2c33ce4176e50c7b44.tar.gz bcm5719-llvm-c862da47e39b0c1800f8ed2c33ce4176e50c7b44.zip |
Enable RTTI for the Makefile build, hopefully getting the linux build a bit further.
llvm-svn: 151187
-rw-r--r-- | lldb/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/Makefile b/lldb/Makefile index 62d98781ad7..6a592ae349a 100644 --- a/lldb/Makefile +++ b/lldb/Makefile @@ -25,6 +25,9 @@ endif # Set LLVM source root level. LEVEL := $(LLDB_LEVEL)/../.. +# shared_ptr from libstdc++ requires RTTI. +REQUIRES_RTTI := 1 + # Include LLVM common makefile. include $(LEVEL)/Makefile.common |