summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/Process
diff options
context:
space:
mode:
authorPavel Labath <labath@google.com>2018-05-22 16:33:43 +0000
committerPavel Labath <labath@google.com>2018-05-22 16:33:43 +0000
commit4c7763eb2f3175b772d199424ffe3bdf52e7ee76 (patch)
tree73d1c5d4104d9a20ec502977f396ff04cc8cacd0 /lldb/source/Plugins/Process
parent85d26075f9571f15977c41a665cc8a72841b49e5 (diff)
downloadbcm5719-llvm-4c7763eb2f3175b772d199424ffe3bdf52e7ee76.tar.gz
bcm5719-llvm-4c7763eb2f3175b772d199424ffe3bdf52e7ee76.zip
Enable ProcessMachCore plugin on non-apple platforms
Summary: The plugin already builds fine on other platforms (linux, at least). All that was necessary was to revitalize the hack in PlatformDarwinKernel (not a very pretty hack, but it gets us going at least). I haven't done a thorough investigation of the state of the plugin on other platforms, but at least the two core file tests we have seem to pass, so I enable them. Reviewers: JDevlieghere, jasonmolenda Subscribers: lldb-commits, mgorny Differential Revision: https://reviews.llvm.org/D47133 llvm-svn: 332997
Diffstat (limited to 'lldb/source/Plugins/Process')
-rw-r--r--lldb/source/Plugins/Process/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/CMakeLists.txt b/lldb/source/Plugins/Process/CMakeLists.txt
index 62abd75a43b..fdeb211fe7a 100644
--- a/lldb/source/Plugins/Process/CMakeLists.txt
+++ b/lldb/source/Plugins/Process/CMakeLists.txt
@@ -11,9 +11,9 @@ elseif (CMAKE_SYSTEM_NAME MATCHES "Windows")
add_subdirectory(Windows/Common)
elseif (CMAKE_SYSTEM_NAME MATCHES "Darwin")
add_subdirectory(MacOSX-Kernel)
- add_subdirectory(mach-core)
endif()
add_subdirectory(gdb-remote)
add_subdirectory(Utility)
add_subdirectory(elf-core)
+add_subdirectory(mach-core)
add_subdirectory(minidump)
OpenPOWER on IntegriCloud