aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJason Molenda <jmolenda@apple.com>2012-10-04 02:16:06 +0000
committerJason Molenda <jmolenda@apple.com>2012-10-04 02:16:06 +0000
commit4a55d75b00a2956f5a26f15c03137c090d142a38 (patch)
tree1f3429e493eab0d7f2e5b34a0a558de6f47bd4a6 /lib
parenta117a5e4afdecd6316e4decac101c6b84127ec3c (diff)
downloadlldb-4a55d75b00a2956f5a26f15c03137c090d142a38.tar.gz
Patch submitted by Dan Malea -- I introduced a dependency between
ProcessGDBRemote and DynamicLoaderDarwinKernel and a patch was needed to get this building on Linux. Thanks! git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@165193 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/Makefile b/lib/Makefile
index 3424492e6..87f805f6b 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -85,9 +85,13 @@ ifeq ($(HOST_OS),Darwin)
endif
ifeq ($(HOST_OS),Linux)
- USEDLIBS += lldbPluginProcessPOSIX.a \
+ USEDLIBS += lldbHostLinux.a \
lldbPluginProcessLinux.a \
- lldbHostLinux.a
+ lldbPluginProcessPOSIX.a \
+ lldbPluginDynamicLoaderMacOSX.a \
+ lldbPluginDynamicLoaderDarwinKernel.a \
+ lldbPluginOperatingSystemDarwinKernel.a
+
endif
ifeq ($(HOST_OS),FreeBSD)