[Lldb-commits] [lldb] r188102 - Disable debugserver builds on non-Mac platforms
Daniel Malea
daniel.malea at intel.com
Fri Aug 9 13:36:23 PDT 2013
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)
More information about the lldb-commits
mailing list