Skip to content

Commit be8ee09

Browse files
authored
[bazel] Move lldb-dap cc_binary to lldb/BUILD.bazel (#105733)
On linux lldb-dap uses the location of the lldb-dap binary to search for lldb-server. Previously these were produced in different directories corresponding to the BUILD file paths. It's not ideal that the BUILD file location matters for the binary at runtime but it doesn't hurt to have this tool here too like the others.
1 parent 08e5a1d commit be8ee09

File tree

2 files changed

+48
-62
lines changed

2 files changed

+48
-62
lines changed

utils/bazel/llvm-project-overlay/lldb/BUILD.bazel

+48
Original file line numberDiff line numberDiff line change
@@ -1015,3 +1015,51 @@ cc_binary(
10151015
"//conditions:default": [],
10161016
}),
10171017
)
1018+
1019+
expand_template(
1020+
name = "lldb-dap-plist",
1021+
out = "lldb-dap-Info.plist",
1022+
substitutions = {
1023+
"${LLDB_VERSION}": PACKAGE_VERSION,
1024+
},
1025+
template = "tools/lldb-dap/lldb-dap-Info.plist.in",
1026+
)
1027+
1028+
gentbl_cc_library(
1029+
name = "lldb_dap_opts_gen",
1030+
strip_include_prefix = "tools/lldb-dap",
1031+
tbl_outs = [(
1032+
["-gen-opt-parser-defs"],
1033+
"tools/lldb-dap/Options.inc",
1034+
)],
1035+
tblgen = "//llvm:llvm-tblgen",
1036+
td_file = "tools/lldb-dap/Options.td",
1037+
deps = ["//llvm:OptParserTdFiles"],
1038+
)
1039+
1040+
cc_binary(
1041+
name = "lldb-dap",
1042+
srcs = glob([
1043+
"tools/lldb-dap/*.cpp",
1044+
"tools/lldb-dap/*.h",
1045+
]),
1046+
additional_linker_inputs = [
1047+
":lldb-dap-plist",
1048+
],
1049+
linkopts = select({
1050+
"@platforms//os:macos": [
1051+
"-Wl,-sectcreate,__TEXT,__info_plist,$(location :lldb-dap-plist)",
1052+
],
1053+
"//conditions:default": [],
1054+
}),
1055+
deps = [
1056+
":lldb_dap_opts_gen",
1057+
"//lldb:APIHeaders",
1058+
"//lldb:Headers",
1059+
"//lldb:Host",
1060+
"//lldb:liblldb.wrapper",
1061+
"//llvm:Option",
1062+
"//llvm:Support",
1063+
"//llvm:config",
1064+
],
1065+
)

utils/bazel/llvm-project-overlay/lldb/tools/lldb-dap/BUILD.bazel

-62
This file was deleted.

0 commit comments

Comments
 (0)