[Lldb-commits] [lldb] r247284 - Build Plugin/JITLoader/GDB on all platforms.

Bruce Mitchener via lldb-commits lldb-commits at lists.llvm.org
Thu Sep 10 07:28:49 PDT 2015


Author: brucem
Date: Thu Sep 10 09:28:49 2015
New Revision: 247284

URL: http://llvm.org/viewvc/llvm-project?rev=247284&view=rev
Log:
Build Plugin/JITLoader/GDB on all platforms.

Summary:
We currently link to this on all platforms, so don't need to re-include
it into the LLDB_USED_LIBS. Also don't need to special case building
it for every supported platform.

Reviewers: clayborg, labath

Subscribers: lldb-commits

Differential Revision: http://reviews.llvm.org/D12756

Modified:
    lldb/trunk/cmake/LLDBDependencies.cmake
    lldb/trunk/source/Plugins/JITLoader/CMakeLists.txt

Modified: lldb/trunk/cmake/LLDBDependencies.cmake
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/cmake/LLDBDependencies.cmake?rev=247284&r1=247283&r2=247284&view=diff
==============================================================================
--- lldb/trunk/cmake/LLDBDependencies.cmake (original)
+++ lldb/trunk/cmake/LLDBDependencies.cmake Thu Sep 10 09:28:49 2015
@@ -79,7 +79,6 @@ if ( CMAKE_SYSTEM_NAME MATCHES "Windows"
   list(APPEND LLDB_USED_LIBS
     lldbPluginProcessWindows
     lldbPluginProcessWinMiniDump
-    lldbPluginJITLoaderGDB
     Ws2_32
     Rpcrt4
     )
@@ -91,7 +90,6 @@ if ( CMAKE_SYSTEM_NAME MATCHES "Linux" )
     lldbPluginProcessLinux
     lldbPluginProcessPOSIX
     lldbPluginProcessElfCore
-    lldbPluginJITLoaderGDB
    )
 endif ()
 
@@ -101,7 +99,6 @@ if ( CMAKE_SYSTEM_NAME MATCHES "FreeBSD"
     lldbPluginProcessFreeBSD
     lldbPluginProcessPOSIX
     lldbPluginProcessElfCore
-    lldbPluginJITLoaderGDB
     )
 endif ()
 

Modified: lldb/trunk/source/Plugins/JITLoader/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/JITLoader/CMakeLists.txt?rev=247284&r1=247283&r2=247284&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/JITLoader/CMakeLists.txt (original)
+++ lldb/trunk/source/Plugins/JITLoader/CMakeLists.txt Thu Sep 10 09:28:49 2015
@@ -1,4 +1 @@
-if (CMAKE_SYSTEM_NAME MATCHES "FreeBSD" OR CMAKE_SYSTEM_NAME MATCHES "Linux"
-    OR CMAKE_SYSTEM_NAME MATCHES "Windows" OR CMAKE_SYSTEM_NAME MATCHES "Darwin")
-  add_subdirectory(GDB)
-endif()
+add_subdirectory(GDB)




More information about the lldb-commits mailing list