File tree Expand file tree Collapse file tree 1 file changed +25
-7
lines changed
utils/bazel/llvm-project-overlay/llvm Expand file tree Collapse file tree 1 file changed +25
-7
lines changed Original file line number Diff line number Diff line change @@ -2887,10 +2887,10 @@ cc_library(
2887
2887
cc_library (
2888
2888
name = "DWARFLinker" ,
2889
2889
srcs = glob ([
2890
- "lib/DWARFLinker/*.cpp" ,
2891
- "lib/DWARFLinker/*.h" ,
2890
+ "lib/DWARFLinker/Classic/ *.cpp" ,
2891
+ "lib/DWARFLinker/Classic/ *.h" ,
2892
2892
]),
2893
- hdrs = glob (["include/llvm/DWARFLinker/*.h" ]),
2893
+ hdrs = glob (["include/llvm/DWARFLinker/Classic/ *.h" ]),
2894
2894
copts = llvm_copts ,
2895
2895
deps = [
2896
2896
":BinaryFormat" ,
@@ -2901,21 +2901,39 @@ cc_library(
2901
2901
":Support" ,
2902
2902
":Target" ,
2903
2903
":TargetParser" ,
2904
+ ":DWARFLinkerBase" ,
2905
+ ],
2906
+ )
2907
+
2908
+ cc_library (
2909
+ name = "DWARFLinkerBase" ,
2910
+ srcs = glob ([
2911
+ "lib/DWARFLinker/*.cpp" ,
2912
+ "lib/DWARFLinker/*.h" ,
2913
+ ]),
2914
+ hdrs = glob (["include/llvm/DWARFLinker/*.h" ]),
2915
+ copts = llvm_copts ,
2916
+ deps = [
2917
+ ":BinaryFormat" ,
2918
+ ":CodeGen" ,
2919
+ ":DebugInfoDWARF" ,
2920
+ ":Support" ,
2921
+ ":Target" ,
2904
2922
],
2905
2923
)
2906
2924
2907
2925
cc_library (
2908
2926
name = "DWARFLinkerParallel" ,
2909
2927
srcs = glob ([
2910
- "lib/DWARFLinkerParallel /*.cpp" ,
2911
- "lib/DWARFLinkerParallel /*.h" ,
2928
+ "lib/DWARFLinker/Parallel /*.cpp" ,
2929
+ "lib/DWARFLinker/Parallel /*.h" ,
2912
2930
]),
2913
- hdrs = glob (["include/llvm/DWARFLinkerParallel /*.h" ]),
2931
+ hdrs = glob (["include/llvm/DWARFLinker/Parallel /*.h" ]),
2914
2932
copts = llvm_copts ,
2915
2933
deps = [
2916
2934
":BinaryFormat" ,
2917
2935
":CodeGen" ,
2918
- ":DWARFLinker " ,
2936
+ ":DWARFLinkerBase " ,
2919
2937
":DebugInfoDWARF" ,
2920
2938
":MC" ,
2921
2939
":Object" ,
You can’t perform that action at this time.
0 commit comments