diff options
| author | Zachary Turner <zturner@google.com> | 2014-08-15 22:50:48 +0000 |
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2014-08-15 22:50:48 +0000 |
| commit | 3c19a6ac48d5660f1d1172ddc3d1999c788b2e50 (patch) | |
| tree | 492087c965818a586010f80347a4d84c6357d00d | |
| parent | 0cc040780ea13275185be335296e6465316f9212 (diff) | |
| download | bcm5719-llvm-3c19a6ac48d5660f1d1172ddc3d1999c788b2e50.tar.gz bcm5719-llvm-3c19a6ac48d5660f1d1172ddc3d1999c788b2e50.zip | |
Try to fix the Make build
llvm-svn: 215782
| -rw-r--r-- | lldb/source/Host/Makefile | 3 | ||||
| -rw-r--r-- | lldb/source/Host/posix/Makefile | 14 |
2 files changed, 17 insertions, 0 deletions
diff --git a/lldb/source/Host/Makefile b/lldb/source/Host/Makefile index 0a4e8ac85c3..58809fb35cb 100644 --- a/lldb/source/Host/Makefile +++ b/lldb/source/Host/Makefile @@ -14,14 +14,17 @@ include $(LLDB_LEVEL)/../../Makefile.config DIRS := common ifeq ($(HOST_OS),Darwin) +DIRS += posix DIRS += macosx endif ifeq ($(HOST_OS),Linux) +DIRS += posix DIRS += linux endif ifneq (,$(filter $(HOST_OS), FreeBSD GNU/kFreeBSD)) +DIRS += posix DIRS += freebsd endif diff --git a/lldb/source/Host/posix/Makefile b/lldb/source/Host/posix/Makefile new file mode 100644 index 00000000000..d263510f6e2 --- /dev/null +++ b/lldb/source/Host/posix/Makefile @@ -0,0 +1,14 @@ +##===- source/Host/posix/Makefile --------------------------*- Makefile -*-===## +# +# The LLVM Compiler Infrastructure +# +# This file is distributed under the University of Illinois Open Source +# License. See LICENSE.TXT for details. +# +##===----------------------------------------------------------------------===## + +LLDB_LEVEL := ../../.. +LIBRARYNAME := lldbHostPosix +BUILD_ARCHIVE = 1 + +include $(LLDB_LEVEL)/Makefile |

