-
failed to build my bazel project on Mac os with error
Then I try to find what is go_sdk//:libs target and why it doesn't does not produce any go_sdk libs files, I found that it's a filegroup
It means that bazel failed to find any *.a from path pkg/darwin_amd64/, but there is no directory darwin_amd64 under the path pkg. I'm curious, since all these rules are generated by bazel, what could be the problem and how should I fix it? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You may be using an older version of rules_go that is incompatible with the newer version of Go SDK (does not ship with precompiled archives). Please check https://github.com/bazelbuild/rules_go for the latest release. |
Beta Was this translation helpful? Give feedback.
You may be using an older version of rules_go that is incompatible with the newer version of Go SDK (does not ship with precompiled archives). Please check https://github.com/bazelbuild/rules_go for the latest release.