[Lldb-commits] [lldb] r221315 - Avoid building lldb-mi when --enable-werror is set

Eric Christopher echristo at gmail.com
Tue Nov 4 15:30:30 PST 2014


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





More information about the lldb-commits mailing list