File tree Expand file tree Collapse file tree 5 files changed +22
-3
lines changed Expand file tree Collapse file tree 5 files changed +22
-3
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ static_library("Interpreter") {
15
15
" //clang/lib/Sema" ,
16
16
" //clang/lib/Serialization" ,
17
17
" //llvm/lib/ExecutionEngine/Orc" ,
18
+ " //llvm/lib/ExecutionEngine/Orc/Debugging" ,
18
19
" //llvm/lib/IR" ,
19
20
" //llvm/lib/Option" ,
20
21
" //llvm/lib/Support" ,
Original file line number Diff line number Diff line change @@ -22,8 +22,6 @@ static_library("Orc") {
22
22
" Core.cpp" ,
23
23
" DebugObjectManagerPlugin.cpp" ,
24
24
" DebugUtils.cpp" ,
25
- " DebuggerSupport.cpp" ,
26
- " DebuggerSupportPlugin.cpp" ,
27
25
" ELFNixPlatform.cpp" ,
28
26
" EPCDebugObjectRegistrar.cpp" ,
29
27
" EPCDynamicLibrarySearchGenerator.cpp" ,
@@ -51,7 +49,6 @@ static_library("Orc") {
51
49
" ObjectTransformLayer.cpp" ,
52
50
" OrcABISupport.cpp" ,
53
51
" OrcV2CBindings.cpp" ,
54
- " PerfSupportPlugin.cpp" ,
55
52
" RTDyldObjectLinkingLayer.cpp" ,
56
53
" SimpleRemoteEPC.cpp" ,
57
54
" SpeculateAnalyses.cpp" ,
Original file line number Diff line number Diff line change
1
+ static_library (" Debugging" ) {
2
+ output_name = " LLVMOrcDebugging"
3
+ deps = [
4
+ " //llvm/lib/ExecutionEngine/Orc" ,
5
+ " //llvm/lib/ExecutionEngine/Orc/Shared" ,
6
+ " //llvm/lib/DebugInfo/DWARF" ,
7
+ " //llvm/lib/Support" ,
8
+ " //llvm/lib/TargetParser" ,
9
+ ]
10
+ sources = [
11
+ " DebugInfoSupport.cpp" ,
12
+ " DebuggerSupport.cpp" ,
13
+ " DebuggerSupportPlugin.cpp" ,
14
+ " PerfSupportPlugin.cpp" ,
15
+ ]
16
+ if (current_os == " linux" ) {
17
+ libs = [ " rt" ]
18
+ }
19
+ }
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ executable("lli") {
9
9
" //llvm/lib/ExecutionEngine/Interpreter" ,
10
10
" //llvm/lib/ExecutionEngine/MCJIT" ,
11
11
" //llvm/lib/ExecutionEngine/Orc" ,
12
+ " //llvm/lib/ExecutionEngine/Orc/Debugging" ,
12
13
" //llvm/lib/ExecutionEngine/Orc/Shared" ,
13
14
" //llvm/lib/ExecutionEngine/Orc/TargetProcess" ,
14
15
" //llvm/lib/ExecutionEngine/RuntimeDyld" ,
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ executable("llvm-jitlink") {
4
4
" //llvm/lib/ExecutionEngine" ,
5
5
" //llvm/lib/ExecutionEngine/JITLink" ,
6
6
" //llvm/lib/ExecutionEngine/Orc" ,
7
+ " //llvm/lib/ExecutionEngine/Orc/Debugging" ,
7
8
" //llvm/lib/ExecutionEngine/RuntimeDyld" ,
8
9
" //llvm/lib/MC" ,
9
10
" //llvm/lib/Object" ,
You can’t perform that action at this time.
0 commit comments