According to tools/Makefile [[ http://reviews.llvm.org/rL209117 | rL209117 ]]
ifeq ($(HOST_OS),Linux) DIRS += lldb-mi endif lldb-mi should be built with cmake on Linux only http://reviews.llvm.org/D3910 Files: tools/CMakeLists.txt Index: tools/CMakeLists.txt =================================================================== --- tools/CMakeLists.txt +++ tools/CMakeLists.txt @@ -2,7 +2,9 @@ add_subdirectory(debugserver) endif() add_subdirectory(driver) +if (CMAKE_SYSTEM_NAME MATCHES "Linux") add_subdirectory(lldb-mi) +endif() if (CMAKE_SYSTEM_NAME MATCHES "FreeBSD" OR CMAKE_SYSTEM_NAME MATCHES "Linux") add_subdirectory(lldb-gdbserver) endif()
Index: tools/CMakeLists.txt =================================================================== --- tools/CMakeLists.txt +++ tools/CMakeLists.txt @@ -2,7 +2,9 @@ add_subdirectory(debugserver) endif() add_subdirectory(driver) +if (CMAKE_SYSTEM_NAME MATCHES "Linux") add_subdirectory(lldb-mi) +endif() if (CMAKE_SYSTEM_NAME MATCHES "FreeBSD" OR CMAKE_SYSTEM_NAME MATCHES "Linux") add_subdirectory(lldb-gdbserver) endif()
_______________________________________________ lldb-commits mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits
