[Lldb-commits] [lldb] r219554 - Fix the build after the recent plugin additions for

Eric Christopher echristo at gmail.com
Fri Oct 10 17:38:55 PDT 2014


Author: echristo
Date: Fri Oct 10 19:38:55 2014
New Revision: 219554

URL: http://llvm.org/viewvc/llvm-project?rev=219554&view=rev
Log:
Fix the build after the recent plugin additions for
AddressSanitizer by adding dependencies and definitions.

Modified:
    lldb/trunk/lib/Makefile
    lldb/trunk/source/CMakeLists.txt
    lldb/trunk/source/Plugins/Makefile

Modified: lldb/trunk/lib/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/lib/Makefile?rev=219554&r1=219553&r2=219554&view=diff
==============================================================================
--- lldb/trunk/lib/Makefile (original)
+++ lldb/trunk/lib/Makefile Fri Oct 10 19:38:55 2014
@@ -42,6 +42,7 @@ USEDLIBS = lldbAPI.a \
 	lldbPluginDynamicLoaderHexagon.a \
 	lldbPluginEmulateInstructionARM.a \
 	lldbPluginEmulateInstructionARM64.a \
+	lldbPluginInstrumentationRuntimeAddressSanitizer.a \
 	lldbPluginLanguageRuntimeCPlusPlusItaniumABI.a \
 	lldbPluginLanguageRuntimeObjCAppleObjCRuntime.a \
 	lldbPluginMemoryHistoryASan.a \

Modified: lldb/trunk/source/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/CMakeLists.txt?rev=219554&r1=219553&r2=219554&view=diff
==============================================================================
--- lldb/trunk/source/CMakeLists.txt (original)
+++ lldb/trunk/source/CMakeLists.txt Fri Oct 10 19:38:55 2014
@@ -85,6 +85,7 @@ set( LLDB_USED_LIBS
   lldbPluginObjectFilePECOFF
   lldbPluginOSPython
   lldbPluginMemoryHistoryASan
+  lldbPluginInstrumentationRuntimeAddressSanitizer
   )
 
 # Need to export the API in the liblldb.dll for Windows

Modified: lldb/trunk/source/Plugins/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Makefile?rev=219554&r1=219553&r2=219554&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Makefile (original)
+++ lldb/trunk/source/Plugins/Makefile Fri Oct 10 19:38:55 2014
@@ -12,7 +12,8 @@ LLDB_LEVEL := ../..
 include $(LLDB_LEVEL)/../../Makefile.config
 
 
-DIRS := ABI/MacOSX-arm ABI/MacOSX-arm64 ABI/MacOSX-i386 ABI/SysV-x86_64 ABI/SysV-hexagon \
+DIRS := ABI/MacOSX-arm ABI/MacOSX-arm64 ABI/MacOSX-i386 ABI/SysV-x86_64 \
+	ABI/SysV-hexagon \
 	Disassembler/llvm \
 	ObjectContainer/BSD-Archive ObjectFile/ELF ObjectFile/PECOFF \
 	ObjectFile/JIT SymbolFile/DWARF SymbolFile/Symtab Process/Utility \
@@ -25,7 +26,8 @@ DIRS := ABI/MacOSX-arm ABI/MacOSX-arm64
 	DynamicLoader/Hexagon-DYLD \
 	OperatingSystem/Python \
 	SymbolVendor/ELF \
-	MemoryHistory/asan
+	MemoryHistory/asan \
+	InstrumentationRuntime/AddressSanitizer
 
 ifeq ($(HOST_OS),Darwin)
 DIRS += Process/MacOSX-Kernel





More information about the lldb-commits mailing list