Author: dmalea
Date: Fri Aug 9 15:36:22 2013
New Revision: 188102
URL: http://llvm.org/viewvc/llvm-project?rev=188102&view=rev
Log:
Disable debugserver builds on non-Mac platforms
- building on other platforms not supported yet
Modified:
lldb/trunk/tools/CMakeLists.txt
Modified: lldb/trunk/tools/CMakeLists.txt
URL:
http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/CMakeLists.txt?rev=188102&r1=188101&r2=188102&view=diff
==============================================================================
--- lldb/trunk/tools/CMakeLists.txt (original)
+++ lldb/trunk/tools/CMakeLists.txt Fri Aug 9 15:36:22 2013
@@ -1,2 +1,4 @@
-add_subdirectory(debugserver)
+if (CMAKE_SYSTEM_NAME MATCHES "Darwin")
+ add_subdirectory(debugserver)
+endif()
add_subdirectory(driver)
_______________________________________________
lldb-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits