[LVI] Add trunc to i1 handling. (#124480)
[llvm-project.git] / lldb / source / Plugins / Process / Linux / CMakeLists.txt
blob708252f887bdc7eba79fc6ab474d993d1de09328
1 add_lldb_library(lldbPluginProcessLinux
2   IntelPTCollector.cpp
3   IntelPTSingleBufferTrace.cpp
4   IntelPTMultiCoreTrace.cpp
5   IntelPTPerThreadProcessTrace.cpp
6   IntelPTThreadTraceCollection.cpp
7   NativeProcessLinux.cpp
8   NativeRegisterContextLinux.cpp
9   NativeRegisterContextLinux_arm.cpp
10   NativeRegisterContextLinux_arm64.cpp
11   NativeRegisterContextLinux_loongarch64.cpp
12   NativeRegisterContextLinux_ppc64le.cpp
13   NativeRegisterContextLinux_riscv64.cpp
14   NativeRegisterContextLinux_s390x.cpp
15   NativeRegisterContextLinux_x86_64.cpp
16   NativeThreadLinux.cpp
17   Perf.cpp
18   Procfs.cpp
19   SingleStepCheck.cpp
21   LINK_LIBS
22     lldbCore
23     lldbHost
24     lldbSymbol
25     lldbTarget
26     lldbUtility
27     lldbPluginProcessPOSIX
28     lldbPluginProcessUtility
29   LINK_COMPONENTS
30     Support
31     TargetParser
32   )