diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-09-08 04:53:03 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-09-08 04:53:03 +0000 |
commit | 73cdaed9a8c4060332a5f77200c4e720cf695c35 (patch) | |
tree | 22719fa1dd39b293c1aecca8ab8d2916ecd90940 | |
parent | c7701e9a8c1c8c1e92ac6a01387963f1db4f6e77 (diff) | |
download | bcm5719-llvm-73cdaed9a8c4060332a5f77200c4e720cf695c35.tar.gz bcm5719-llvm-73cdaed9a8c4060332a5f77200c4e720cf695c35.zip |
build: attempt to fix the buildbots
Linking Release+Asserts executable lldb-gdbserver (without symbols)
liblldb.so: undefined reference to `lldb_private::MemoryHistoryASan::Initialize()'
liblldb.so: undefined reference to `lldb_private::MemoryHistoryASan::Terminate()'
liblldb.so: undefined reference to `vtable for lldb_private::TypeValidatorImpl_CXX'
liblldb.so: undefined reference to `lldb_private::TypeValidatorImpl::TypeValidatorImpl(lldb_private::TypeValidatorImpl::Flags const&)'
liblldb.so underlinked to lldbPluginMemoryHistoryASan.a when building with the
make based build system (as opposed to CMake).
llvm-svn: 217360
-rw-r--r-- | lldb/lib/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/lib/Makefile b/lldb/lib/Makefile index 89b82849af0..e3233098bb4 100644 --- a/lldb/lib/Makefile +++ b/lldb/lib/Makefile @@ -44,6 +44,7 @@ USEDLIBS = lldbAPI.a \ lldbPluginEmulateInstructionARM64.a \ lldbPluginLanguageRuntimeCPlusPlusItaniumABI.a \ lldbPluginLanguageRuntimeObjCAppleObjCRuntime.a \ + lldbPluginMemoryHistoryASan.a \ lldbPluginObjectContainerBSDArchive.a \ lldbPluginObjectFileELF.a \ lldbPluginObjectFileJIT.a \ |