Patch from Jay Cornwall that modifies the LLDB "Host" layer to reuse more
code between linux, darwin and BSD.



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@113263 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Makefile b/lib/Makefile
index 69eaa0d..454e89b 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -23,7 +23,7 @@
 	lldbCommands.a \
 	lldbCore.a \
 	lldbExpression.a \
-	lldbHostPosix.a \
+	lldbHostCommon.a \
 	lldbInitAndLog.a \
 	lldbInterpreter.a \
 	lldbPluginABIMacOSX_i386.a \
@@ -69,8 +69,7 @@
 endif
 
 ifeq ($(HOST_OS),Linux)
-  USEDLIBS += lldbHostLinux.a \
-              lldbPluginProcessLinux.a
+  USEDLIBS += lldbPluginProcessLinux.a
 endif
 
 include $(LEVEL)/Makefile.common