[Lldb-commits] [lldb] r181695 - Under GNU/Linux, do not build lldbPluginDynamicLoaderDarwinKernel.a. It was breaking the build

Sylvestre Ledru sylvestre at debian.org
Mon May 13 03:18:51 PDT 2013


Author: sylvestre
Date: Mon May 13 05:18:51 2013
New Revision: 181695

URL: http://llvm.org/viewvc/llvm-project?rev=181695&view=rev
Log:
Under GNU/Linux, do not build lldbPluginDynamicLoaderDarwinKernel.a. It was breaking the build

Modified:
    lldb/trunk/lib/Makefile
    lldb/trunk/source/Plugins/Makefile

Modified: lldb/trunk/lib/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/lib/Makefile?rev=181695&r1=181694&r2=181695&view=diff
==============================================================================
--- lldb/trunk/lib/Makefile (original)
+++ lldb/trunk/lib/Makefile Mon May 13 05:18:51 2013
@@ -96,9 +96,7 @@ ifeq ($(HOST_OS),Linux)
   USEDLIBS += lldbHostLinux.a \
               lldbPluginProcessLinux.a \
               lldbPluginProcessPOSIX.a \
-              lldbPluginDynamicLoaderMacOSX.a \
-              lldbPluginDynamicLoaderDarwinKernel.a
-
+              lldbPluginDynamicLoaderMacOSX.a
 endif
 
 ifeq ($(HOST_OS),FreeBSD)

Modified: lldb/trunk/source/Plugins/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Makefile?rev=181695&r1=181694&r2=181695&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Makefile (original)
+++ lldb/trunk/source/Plugins/Makefile Mon May 13 05:18:51 2013
@@ -32,7 +32,7 @@ DIRS += Process/mach-core
 endif
 
 ifeq ($(HOST_OS),Linux)
-DIRS += DynamicLoader/MacOSX-DYLD DynamicLoader/Darwin-Kernel
+DIRS += DynamicLoader/MacOSX-DYLD
 DIRS += Process/Linux Process/POSIX
 endif
 





More information about the lldb-commits mailing list