diff options
author | Greg Clayton <gclayton@apple.com> | 2010-09-07 20:11:56 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2010-09-07 20:11:56 +0000 |
commit | 2bddd3442f7c40a6203bc85c5690e96858ae8e04 (patch) | |
tree | 61919ec0dcb54ad460c36b2bf7d226a983a9fd7a /lldb/lib | |
parent | 3c8019c94d5883fd35e665d64f4df3556849f1d5 (diff) | |
download | bcm5719-llvm-2bddd3442f7c40a6203bc85c5690e96858ae8e04.tar.gz bcm5719-llvm-2bddd3442f7c40a6203bc85c5690e96858ae8e04.zip |
Patch from Jay Cornwall that modifies the LLDB "Host" layer to reuse more
code between linux, darwin and BSD.
llvm-svn: 113263
Diffstat (limited to 'lldb/lib')
-rw-r--r-- | lldb/lib/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lldb/lib/Makefile b/lldb/lib/Makefile index 69eaa0d5645..454e89b7257 100644 --- a/lldb/lib/Makefile +++ b/lldb/lib/Makefile @@ -23,7 +23,7 @@ USEDLIBS = lldbAPI.a \ lldbCommands.a \ lldbCore.a \ lldbExpression.a \ - lldbHostPosix.a \ + lldbHostCommon.a \ lldbInitAndLog.a \ lldbInterpreter.a \ lldbPluginABIMacOSX_i386.a \ @@ -69,8 +69,7 @@ ifeq ($(HOST_OS),Darwin) endif ifeq ($(HOST_OS),Linux) - USEDLIBS += lldbHostLinux.a \ - lldbPluginProcessLinux.a + USEDLIBS += lldbPluginProcessLinux.a endif include $(LEVEL)/Makefile.common |