summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Malea <daniel.malea@intel.com>2013-08-09 20:36:22 +0000
committerDaniel Malea <daniel.malea@intel.com>2013-08-09 20:36:22 +0000
commit410af12efc09383c9d851b642629970b31fac1d7 (patch)
treed0b33b827ed4417ad014764683eb022e6499150a
parent551c83d3793fad44b8c0e554c4d72d3b041bf06c (diff)
downloadbcm5719-llvm-410af12efc09383c9d851b642629970b31fac1d7.tar.gz
bcm5719-llvm-410af12efc09383c9d851b642629970b31fac1d7.zip
Disable debugserver builds on non-Mac platforms
- building on other platforms not supported yet llvm-svn: 188102
-rw-r--r--lldb/tools/CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/lldb/tools/CMakeLists.txt b/lldb/tools/CMakeLists.txt
index 7f748c40c95..e086568229a 100644
--- a/lldb/tools/CMakeLists.txt
+++ b/lldb/tools/CMakeLists.txt
@@ -1,2 +1,4 @@
-add_subdirectory(debugserver)
+if (CMAKE_SYSTEM_NAME MATCHES "Darwin")
+ add_subdirectory(debugserver)
+endif()
add_subdirectory(driver)
OpenPOWER on IntegriCloud