Author: echristo
Date: Tue Nov  4 17:30:30 2014
New Revision: 221315

URL: http://llvm.org/viewvc/llvm-project?rev=221315&view=rev
Log:
Avoid building lldb-mi when --enable-werror is set
as it doesn't build and is optional.

Modified:
    lldb/trunk/tools/Makefile

Modified: lldb/trunk/tools/Makefile
URL: 
http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/Makefile?rev=221315&r1=221314&r2=221315&view=diff
==============================================================================
--- lldb/trunk/tools/Makefile (original)
+++ lldb/trunk/tools/Makefile Tue Nov  4 17:30:30 2014
@@ -25,7 +25,10 @@ ifeq ($(HOST_OS),Darwin)
 DIRS += debugserver
 endif
 
+ifeq ($(ENABLE_WERROR),0)
 DIRS += lldb-mi
+endif
+
 DIRS += driver
 
 include $(LLDB_LEVEL)/Makefile


_______________________________________________
lldb-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits

Reply via email to