diff options
| author | Hafiz Abid Qadeer <hafiz_abid@mentor.com> | 2014-05-19 09:12:15 +0000 |
|---|---|---|
| committer | Hafiz Abid Qadeer <hafiz_abid@mentor.com> | 2014-05-19 09:12:15 +0000 |
| commit | 31f56816af545cb995d0235d61f608c316095f53 (patch) | |
| tree | 721bb8fe712e32c9b8933493d013fca6ed00cb3a | |
| parent | 6c039b3459a206d9e0bf7233c8070b4bdea08e2f (diff) | |
| download | bcm5719-llvm-31f56816af545cb995d0235d61f608c316095f53.tar.gz bcm5719-llvm-31f56816af545cb995d0235d61f608c316095f53.zip | |
Build lldb-mi with autotools on Linux.
THe lldb-mi stuff was not being built on Linux with autotools.
I only added Linux now as I have tested that it build fine on Linux.
llvm-svn: 209117
| -rw-r--r-- | lldb/tools/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/tools/Makefile b/lldb/tools/Makefile index 7e04c9e3d30..58d53ecca4b 100644 --- a/lldb/tools/Makefile +++ b/lldb/tools/Makefile @@ -25,6 +25,10 @@ ifeq ($(HOST_OS),Darwin) DIRS += debugserver endif +ifeq ($(HOST_OS),Linux) +DIRS += lldb-mi +endif + DIRS += driver include $(LLDB_LEVEL)/Makefile |

