[Lldb-commits] [lldb] r154109 - /lldb/trunk/source/Plugins/Makefile

Greg Clayton gclayton at apple.com
Thu Apr 5 10:43:02 PDT 2012


Author: gclayton
Date: Thu Apr  5 12:43:02 2012
New Revision: 154109

URL: http://llvm.org/viewvc/llvm-project?rev=154109&view=rev
Log:
Enable building the POSIX-DYLD dynamic loader plug-in in the Makefile build since it can be used for remote debugging.


Modified:
    lldb/trunk/source/Plugins/Makefile

Modified: lldb/trunk/source/Plugins/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Makefile?rev=154109&r1=154108&r2=154109&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Makefile (original)
+++ lldb/trunk/source/Plugins/Makefile Thu Apr  5 12:43:02 2012
@@ -18,7 +18,8 @@
 	DynamicLoader/Static Platform Process/gdb-remote Instruction/ARM \
 	UnwindAssembly/InstEmulation UnwindAssembly/x86 \
 	LanguageRuntime/CPlusPlus/ItaniumABI \
-	LanguageRuntime/ObjC/AppleObjCRuntime
+	LanguageRuntime/ObjC/AppleObjCRuntime \
+	DynamicLoader/POSIX-DYLD
 
 ifeq ($(HOST_OS),Darwin)
 DIRS += Process/MacOSX-Kernel
@@ -31,11 +32,11 @@
 endif
 
 ifeq ($(HOST_OS),Linux)
-DIRS += Process/Linux Process/POSIX DynamicLoader/POSIX-DYLD
+DIRS += Process/Linux Process/POSIX
 endif
 
 ifeq ($(HOST_OS),FreeBSD)
-DIRS += Process/FreeBSD Process/POSIX DynamicLoader/POSIX-DYLD
+DIRS += Process/FreeBSD Process/POSIX
 endif
 
 include $(LLDB_LEVEL)/Makefile





More information about the lldb-commits mailing list