Ted Pudlik
Ted Pudlik
### Description of the bug: The `label_flag` and `label_setting` built-in rules are discussed in https://bazel.build/extending/config#label-typed-build-settings, but have no reference documentation listing their attributes. It should probably be documented at https://bazel.build/reference/be/general....
Fixes: #399
Spherical Bessel functions of the first kind are defined as, ``` from mpmath import mpf, sqrt, pi, besselj def sph_jn(n, z): return besselj(n + mpf(1)/2, z)*sqrt(pi/(2*z)) ``` For positive integer...
### Describe the issue If you include Abseil as a dependency in your Bazel WORKSPACE and attempt to run its tests, you will get failures in the following: ``` @com_google_absl//absl/time:time_test...
### Description of the problem / feature request: Provide a way to express `--per_file_copt` in the toolchain configuration, as an alternative to putting it in `.bazelrc`. ### Feature requests: what...
### Description of the problem / feature request: I would like Bazel to provide a solution to the "linktime transitive dependency" problem. This is a problem commonly encountered in implementing...
Mini design document: https://docs.google.com/document/d/18pFUSWH0vN-R0AfIC5Wk5yWzE3Rhe0miDI5TgPRj2s4/edit# This PR is intended for discussion, I don't think it's necessarily ready to be merged. (In particular, I'm not sure if privileged execution modes are correctly...
### Description of the feature request: I would like to mark a target as `target_compatible_with` a `config_setting`. I hoped I could do, ``` target_compatible_with = [":my_config_setting"] ``` It turns out...
The default Bazel C++ toolchain has a cool feature that allows disabling warnings from external headers: https://github.com/bazelbuild/bazel/pull/13107. It would be nice to add this to rules_cc_toolchain, too. It would make...
Currently, the releases for this repository contain only autogenerated source archives. The checksums of these archives are actually not guaranteed to be stable, and have changed in the past, causing...