xref: /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Utility/CMakeLists.txt (revision 101d251d5caf88a9341f3045ab62e122abae1b90)
1add_lldb_library(lldbPluginProcessUtility
2  AuxVector.cpp
3  FreeBSDSignals.cpp
4  GDBRemoteSignals.cpp
5  HistoryThread.cpp
6  HistoryUnwind.cpp
7  InferiorCallPOSIX.cpp
8  LinuxProcMaps.cpp
9  LinuxSignals.cpp
10  MemoryTagManagerAArch64MTE.cpp
11  MipsLinuxSignals.cpp
12  NativeProcessSoftwareSingleStep.cpp
13  NativeRegisterContextDBReg_arm64.cpp
14  NativeRegisterContextDBReg_x86.cpp
15  NativeRegisterContextRegisterInfo.cpp
16  NetBSDSignals.cpp
17  OpenBSDSignals.cpp
18  RegisterContext_x86.cpp
19  RegisterContextDarwin_arm.cpp
20  RegisterContextDarwin_arm64.cpp
21  RegisterContextDarwin_i386.cpp
22  RegisterContextDarwin_x86_64.cpp
23  RegisterContextDummy.cpp
24  RegisterContextFreeBSD_i386.cpp
25  RegisterContextFreeBSD_mips64.cpp
26  RegisterContextFreeBSD_powerpc.cpp
27  RegisterContextFreeBSD_x86_64.cpp
28  RegisterContextHistory.cpp
29  RegisterContextLinux_i386.cpp
30  RegisterContextLinux_x86_64.cpp
31  RegisterContextLinux_s390x.cpp
32  RegisterContextMach_arm.cpp
33  RegisterContextMach_i386.cpp
34  RegisterContextMach_x86_64.cpp
35  RegisterContextMemory.cpp
36  RegisterContextNetBSD_i386.cpp
37  RegisterContextNetBSD_x86_64.cpp
38  RegisterContextOpenBSD_i386.cpp
39  RegisterContextOpenBSD_x86_64.cpp
40  RegisterContextPOSIX_arm.cpp
41  RegisterContextPOSIX_arm64.cpp
42  RegisterContextPOSIX_loongarch64.cpp
43  RegisterContextPOSIX_mips64.cpp
44  RegisterContextPOSIX_powerpc.cpp
45  RegisterContextPOSIX_ppc64le.cpp
46  RegisterContextPOSIX_riscv64.cpp
47  RegisterContextPOSIX_s390x.cpp
48  RegisterContextPOSIX_x86.cpp
49  RegisterContextThreadMemory.cpp
50  RegisterContextWindows_i386.cpp
51  RegisterContextWindows_x86_64.cpp
52  RegisterInfoPOSIX_arm.cpp
53  RegisterInfoPOSIX_arm64.cpp
54  RegisterInfoPOSIX_loongarch64.cpp
55  RegisterInfoPOSIX_ppc64le.cpp
56  RegisterInfoPOSIX_riscv64.cpp
57  StopInfoMachException.cpp
58  ThreadMemory.cpp
59
60  LINK_LIBS
61    lldbBreakpoint
62    lldbCore
63    lldbDataFormatters
64    lldbExpression
65    lldbHost
66    lldbSymbol
67    lldbTarget
68    lldbUtility
69  LINK_COMPONENTS
70    Support
71    TargetParser
72  )
73