|
|
|
|
|
by paulddraper
2417 days ago
|
|
While I love these projects, neither one of these actually fix the problem of an ecosystem of dependencies. Buck and Bazel were created for complex internal dependencies. You'll have just as easy/hard of a time getting Boost installed with Bazel as you would for Make. Or publishing an accessible library that depends on Boost. |
|
> Or publishing an accessible library that depends on Boost.
This is patently false. Here is the bazel dependency for boost (put this in your workspace file):
No other installation necessary. If someone has a C++ compiler and Bazel installed that will allow you to build against Boost deps (e.g. "@boost//:callable_traits"). No downloading boost by hand, no building boost by hand, no managing it's build, bazel does all of that.Bazel does have a dependency ecosystem, it's based off of hashed versions of publicly available git repos and http archives (and anything else you want really). Which means any code anywhere can be a dependency while still being reproducible. Additionally you can provide local build instructions for the external code, so you don't even need to rely on their build. The better way is to find someone who maintains a BUILD file for a repo (or mirror and maintain it yourself) but still.