gpt4 book ai didi

grpc - 解决在 bazel 中使用 gRPC cpp 时的依赖问题

转载 作者:行者123 更新时间:2023-12-03 22:25:33 26 4
gpt4 key购买 nike

我正在尝试运行一个依赖 gRPC 的简单程序。我尝试了几个示例,但不断收到以下错误:

ERROR: /home/git/examples/WORKSPACE:1:1: name 'git_repository' is not defined
ERROR: Error evaluating WORKSPACE file

这是我的 bazel 版本:

➜ git:(master) ✗ bazel version
Build label: 0.23.2

这是工作区文件内容:

git_repository(
name = "com_github_grpc_grpc",
commit = "ac0808b107d73613191b66617a547a201871a845",
remote = "https://github.com/grpc/grpc.git",
)

load("@com_github_grpc_grpc//:bazel/grpc_deps.bzl", "grpc_deps")

grpc_deps()

bind(
name = "grpc_cpp_plugin",
actual = "@com_github_grpc_grpc//:grpc_cpp_plugin",
)

bind(
name = "grpc++_codegen_proto",
actual = "@com_github_grpc_grpc//:grpc++_codegen_proto",
)

任何帮助将不胜感激!

最佳答案

git_repository 不再是原生规则。您需要将它包含在 WORKSPACE 的顶部:

load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")

关于grpc - 解决在 bazel 中使用 gRPC cpp 时的依赖问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55190124/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com