[Lldb-commits] [lldb] r217360 - build: attempt to fix the buildbots
Saleem Abdulrasool
compnerd at compnerd.org
Sun Sep 7 21:53:03 PDT 2014
Author: compnerd
Date: Sun Sep 7 23:53:03 2014
New Revision: 217360
URL: http://llvm.org/viewvc/llvm-project?rev=217360&view=rev
Log:
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).
Modified:
lldb/trunk/lib/Makefile
Modified: lldb/trunk/lib/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/lib/Makefile?rev=217360&r1=217359&r2=217360&view=diff
==============================================================================
--- lldb/trunk/lib/Makefile (original)
+++ lldb/trunk/lib/Makefile Sun Sep 7 23:53:03 2014
@@ -44,6 +44,7 @@ USEDLIBS = lldbAPI.a \
lldbPluginEmulateInstructionARM64.a \
lldbPluginLanguageRuntimeCPlusPlusItaniumABI.a \
lldbPluginLanguageRuntimeObjCAppleObjCRuntime.a \
+ lldbPluginMemoryHistoryASan.a \
lldbPluginObjectContainerBSDArchive.a \
lldbPluginObjectFileELF.a \
lldbPluginObjectFileJIT.a \
More information about the lldb-commits
mailing list