summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lldb/lib/Makefile1
-rw-r--r--lldb/source/CMakeLists.txt1
-rw-r--r--lldb/source/Plugins/Makefile6
3 files changed, 6 insertions, 2 deletions
diff --git a/lldb/lib/Makefile b/lldb/lib/Makefile
index e3233098bb4..3bd9c222df5 100644
--- a/lldb/lib/Makefile
+++ b/lldb/lib/Makefile
@@ -42,6 +42,7 @@ USEDLIBS = lldbAPI.a \
lldbPluginDynamicLoaderHexagon.a \
lldbPluginEmulateInstructionARM.a \
lldbPluginEmulateInstructionARM64.a \
+ lldbPluginInstrumentationRuntimeAddressSanitizer.a \
lldbPluginLanguageRuntimeCPlusPlusItaniumABI.a \
lldbPluginLanguageRuntimeObjCAppleObjCRuntime.a \
lldbPluginMemoryHistoryASan.a \
diff --git a/lldb/source/CMakeLists.txt b/lldb/source/CMakeLists.txt
index 6284b4bad45..cede1e7db5b 100644
--- a/lldb/source/CMakeLists.txt
+++ b/lldb/source/CMakeLists.txt
@@ -85,6 +85,7 @@ set( LLDB_USED_LIBS
lldbPluginObjectFilePECOFF
lldbPluginOSPython
lldbPluginMemoryHistoryASan
+ lldbPluginInstrumentationRuntimeAddressSanitizer
)
# Need to export the API in the liblldb.dll for Windows
diff --git a/lldb/source/Plugins/Makefile b/lldb/source/Plugins/Makefile
index 514ed3b6aa4..4302973c780 100644
--- a/lldb/source/Plugins/Makefile
+++ b/lldb/source/Plugins/Makefile
@@ -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 ABI/MacOSX-i386 ABI/SysV-x86_64 ABI/SysV
DynamicLoader/Hexagon-DYLD \
OperatingSystem/Python \
SymbolVendor/ELF \
- MemoryHistory/asan
+ MemoryHistory/asan \
+ InstrumentationRuntime/AddressSanitizer
ifeq ($(HOST_OS),Darwin)
DIRS += Process/MacOSX-Kernel
OpenPOWER on IntegriCloud