Andreas Herrmann
Andreas Herrmann
I encountered the same issue with an instance of `tup` installed via Nix on Ubuntu 24.04. In that case the issue was not the lack of additional capabilities in the...
Will be addressed by https://github.com/tweag/rules_nixpkgs/pull/576
Interesting, the [template built into Bazel](https://github.com/bazelbuild/bazel/blob/41da8a42510f6d9b6ea1937077997e8019d75eb9/tools/cpp/BUILD.tpl#L121C28-L121C55) includes this ``` extra_flags_per_feature = %{extra_flags_per_feature}, ``` other fields that should be set via `get_starlark_list` look like this instead ``` coverage_link_flags = [%{coverage_link_flags}], ```...
Thank you @avdv, good catch! > Arguably, since the variable never has a meaningful value currently, always writing `{}` would be the easiest thing to fix this. Yes, that's an...
Link to corresponding [Bazel Community Slack thread](https://bazelbuild.slack.com/archives/CFB3AE72P/p1732725248232989).
Related: https://github.com/facebook/buck2/pull/811 provides a draft implementation of BES support for Buck2.
> CI fails are unrelated... The failure is related. Looking at the failing test binary and the corresponding shared library ``` $ readelf -d bazel-out/k8-fastbuild/bin/cc-dependencies/shared-library/add-test ... 0x0000000000000001 (NEEDED) Shared library:...
@infinisil On the command-line, e.g. as an `--arg`, but how exactly is left to the user. These paths are exposed through a WORKSPACE scope implementation of Bazel's location expansion, you...
@infinisil Thanks for looking into this! > * But you can still do it explicitly using `builtins.path`, assuming you have an absolute path as a string: Bazel usually deals in...
@infinisil I'm not sure I understand. When I try to use the stringly relative path then I get errors of the form ``` error: string './tests/location_expansion/test_file' doesn't represent an absolute...