Skip to content

Commit

Permalink
When I build lyra on Linux, I miss ERROR as "no such package '@gflags…
Browse files Browse the repository at this point in the history
…//': The repository '@gflags' could not be resolved: Repository '@gflags' is not defined and referenced by '@com_google_glog//:glog'".Check glog repo's WORKSPACE.bazel line 6 : bazel_dep(name = "gflags", version = "2.2.2"), so I fix this problem through change lyra repo's WORKSPACE.bazel line 100: name = "com_github_gflags_gflags", to name = "gflags", now it works well.(2024-08-20)
  • Loading branch information
INNVATION1 committed Aug 20, 2024
1 parent 47698da commit 9c4f4f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ git_repository(
)
# Dependency for glog
git_repository(
name = "com_github_gflags_gflags",
name = "gflags",
remote = "https://github.com/mchinen/gflags.git",
branch = "android_linking_fix"
)
Expand Down

0 comments on commit 9c4f4f6

Please sign in to comment.