[Lldb-commits] [lldb] r200870 - Enable lldb-gdbserver on Linux as well in the cmake build

Ed Maste emaste at freebsd.org
Wed Feb 5 11:03:18 PST 2014


Author: emaste
Date: Wed Feb  5 13:03:18 2014
New Revision: 200870

URL: http://llvm.org/viewvc/llvm-project?rev=200870&view=rev
Log:
Enable lldb-gdbserver on Linux as well in the cmake build

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=200870&r1=200869&r2=200870&view=diff
==============================================================================
--- lldb/trunk/tools/CMakeLists.txt (original)
+++ lldb/trunk/tools/CMakeLists.txt Wed Feb  5 13:03:18 2014
@@ -2,7 +2,7 @@ if (CMAKE_SYSTEM_NAME MATCHES "Darwin")
   add_subdirectory(debugserver)
 endif()
   add_subdirectory(driver)
-if (CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
+if (CMAKE_SYSTEM_NAME MATCHES "FreeBSD" OR CMAKE_SYSTEM_NAME MATCHES "Linux")
   add_subdirectory(lldb-gdbserver)
 endif()
 if (NOT CMAKE_SYSTEM_NAME MATCHES "Windows")





More information about the lldb-commits mailing list