[Lldb-commits] [lldb] fcae621 - [lldb/Plugin] Unconditionally build	Darwin-Kernel
    Jonas Devlieghere via lldb-commits 
    lldb-commits at lists.llvm.org
       
    Mon Feb 17 18:14:38 PST 2020
    
    
  
Author: Jonas Devlieghere
Date: 2020-02-17T18:14:24-08:00
New Revision: fcae62167e80d365e02f02175eb20de469d82755
URL: https://github.com/llvm/llvm-project/commit/fcae62167e80d365e02f02175eb20de469d82755
DIFF: https://github.com/llvm/llvm-project/commit/fcae62167e80d365e02f02175eb20de469d82755.diff
LOG: [lldb/Plugin] Unconditionally build Darwin-Kernel
Added: 
    
Modified: 
    lldb/source/Plugins/DynamicLoader/CMakeLists.txt
Removed: 
    
################################################################################
diff  --git a/lldb/source/Plugins/DynamicLoader/CMakeLists.txt b/lldb/source/Plugins/DynamicLoader/CMakeLists.txt
index bb0776dc497a..f357fea02efb 100644
--- a/lldb/source/Plugins/DynamicLoader/CMakeLists.txt
+++ b/lldb/source/Plugins/DynamicLoader/CMakeLists.txt
@@ -1,6 +1,4 @@
-if (CMAKE_SYSTEM_NAME MATCHES "Darwin")
-  add_subdirectory(Darwin-Kernel)
-endif()
+add_subdirectory(Darwin-Kernel)
 add_subdirectory(MacOSX-DYLD)
 add_subdirectory(POSIX-DYLD)
 add_subdirectory(Static)
        
    
    
More information about the lldb-commits
mailing list