[llvm] 520db34 - [gn] Make lldb-dap depend on lldbHost
Nico Weber via llvm-commits
llvm-commits at lists.llvm.org
Sun Aug 10 06:28:51 PDT 2025
Author: Nico Weber
Date: 2025-08-10T09:28:25-04:00
New Revision: 520db343b86a1273f632e896884defc69be18164
URL: https://github.com/llvm/llvm-project/commit/520db343b86a1273f632e896884defc69be18164
DIFF: https://github.com/llvm/llvm-project/commit/520db343b86a1273f632e896884defc69be18164.diff
LOG: [gn] Make lldb-dap depend on lldbHost
Matches CMake, and is apparently needed on Windows now.
Added:
Modified:
llvm/utils/gn/secondary/lldb/tools/lldb-dap/BUILD.gn
Removed:
################################################################################
diff --git a/llvm/utils/gn/secondary/lldb/tools/lldb-dap/BUILD.gn b/llvm/utils/gn/secondary/lldb/tools/lldb-dap/BUILD.gn
index 36dc6377a5955..a7099aa18b0f0 100644
--- a/llvm/utils/gn/secondary/lldb/tools/lldb-dap/BUILD.gn
+++ b/llvm/utils/gn/secondary/lldb/tools/lldb-dap/BUILD.gn
@@ -5,6 +5,7 @@ static_library("lib") {
configs += [ "//llvm/utils/gn/build:lldb_code" ]
deps = [
"//lldb/source/API:liblldb",
+ "//lldb/source/Host",
"//llvm/lib/Option",
"//llvm/lib/Support",
]
@@ -14,7 +15,6 @@ static_library("lib") {
include_dirs = [ "." ]
- # FIXME: link in //lldb/source/Host on Win (and netbsd)
# FIXME: link in pthread
# FIXME: rpath/install_name stuff on macOS for framework on macOS
More information about the llvm-commits
mailing list