[Lldb-commits] [lldb] r200865 - Build lldb-gdbserver on FreeBSD
Ed Maste
emaste at freebsd.org
Wed Feb 5 10:37:39 PST 2014
Author: emaste
Date: Wed Feb 5 12:37:39 2014
New Revision: 200865
URL: http://llvm.org/viewvc/llvm-project?rev=200865&view=rev
Log:
Build lldb-gdbserver on FreeBSD
It passes basic sanity tests so we might as well enable it.
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=200865&r1=200864&r2=200865&view=diff
==============================================================================
--- lldb/trunk/tools/CMakeLists.txt (original)
+++ lldb/trunk/tools/CMakeLists.txt Wed Feb 5 12:37:39 2014
@@ -2,6 +2,9 @@ if (CMAKE_SYSTEM_NAME MATCHES "Darwin")
add_subdirectory(debugserver)
endif()
add_subdirectory(driver)
+if (CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
+ add_subdirectory(lldb-gdbserver)
+endif()
if (NOT CMAKE_SYSTEM_NAME MATCHES "Windows")
add_subdirectory(lldb-platform)
endif()
More information about the lldb-commits
mailing list