Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / source / Plugins / Process / elf-core / CMakeLists.txt
blob8ddc671e3ae66d58ae03aab5cb0d7a91b10df352
1 add_lldb_library(lldbPluginProcessElfCore PLUGIN
2   ProcessElfCore.cpp
3   ThreadElfCore.cpp
4   RegisterContextLinuxCore_x86_64.cpp
5   RegisterContextPOSIXCore_arm.cpp
6   RegisterContextPOSIXCore_arm64.cpp
7   RegisterContextPOSIXCore_mips64.cpp
8   RegisterContextPOSIXCore_powerpc.cpp
9   RegisterContextPOSIXCore_ppc64le.cpp
10   RegisterContextPOSIXCore_s390x.cpp
11   RegisterContextPOSIXCore_x86_64.cpp
12   RegisterUtilities.cpp
14   LINK_LIBS
15     lldbCore
16     lldbTarget
17     lldbPluginDynamicLoaderPosixDYLD
18     lldbPluginObjectFileELF
19     lldbPluginProcessUtility
20   LINK_COMPONENTS
21     BinaryFormat
22     Support
23   )