diff options
| author | Daniel Malea <daniel.malea@intel.com> | 2013-08-09 20:36:22 +0000 |
|---|---|---|
| committer | Daniel Malea <daniel.malea@intel.com> | 2013-08-09 20:36:22 +0000 |
| commit | 410af12efc09383c9d851b642629970b31fac1d7 (patch) | |
| tree | d0b33b827ed4417ad014764683eb022e6499150a | |
| parent | 551c83d3793fad44b8c0e554c4d72d3b041bf06c (diff) | |
| download | bcm5719-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.txt | 4 |
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)
|

