[Lldb-commits] [lldb] r209117 - Build lldb-mi with autotools on Linux.
Hafiz Abid Qadeer
hafiz_abid at mentor.com
Mon May 19 02:12:16 PDT 2014
Author: abidh
Date: Mon May 19 04:12:15 2014
New Revision: 209117
URL: http://llvm.org/viewvc/llvm-project?rev=209117&view=rev
Log:
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.
Modified:
lldb/trunk/tools/Makefile
Modified: lldb/trunk/tools/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/Makefile?rev=209117&r1=209116&r2=209117&view=diff
==============================================================================
--- lldb/trunk/tools/Makefile (original)
+++ lldb/trunk/tools/Makefile Mon May 19 04:12:15 2014
@@ -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
More information about the lldb-commits
mailing list