Check for nightly toolchain when enabling split debug info. (#4186)

This fixes a problem pointed out by

https://github.com/bazelbuild/rules_rust/pull/4092#issuecomment-5136906807.

`-Zsplit-dwarf-out-dir` is only available on nightly, so we have to gate
split debug info on it. Now, if the user requests `--fission` while
using a non-nightly Rust toolchain, the build will fail. To avoid
breaking users relying on the previous behavior, a
`skip_fission_for_rust` flag has been added. Users can add it to their
bazelrc file to explicitly signal that they're okay with Rust compiles
not producing split debug info, even if requested in the command line.

Assisted-by: Gemini
5 files changed
tree: febe6c0d50e06109b6532afec062454b02558467
  1. .bazelci/
  2. .bcr/
  3. .github/
  4. cargo/
  5. crate_universe/
  6. docs/
  7. examples/
  8. extensions/
  9. ffi/
  10. nix/
  11. rust/
  12. test/
  13. tools/
  14. util/
  15. .bazelignore
  16. .bazelrc
  17. .clang-format
  18. .clippy.toml
  19. .envrc
  20. .gitattributes
  21. .gitignore
  22. .pre-commit-config.yaml
  23. .prettierrc.toml
  24. .rustfmt.toml
  25. .typos.toml
  26. ARCHITECTURE.md
  27. AUTHORS
  28. BUILD.bazel
  29. CODEOWNERS
  30. COMPATIBILITY.md
  31. CONTRIBUTING.md
  32. CONTRIBUTORS
  33. LICENSE.txt
  34. MODULE.bazel
  35. README.md
  36. version.bzl
  37. WORKSPACE.bazel
README.md

Rust Rules

  • Postsubmit Build status

Overview

This repository provides rules for building Rust projects with Bazel.

Starter repo

The fastest way to try this in an empty project is to click the green “Use this template” button on https://github.com/bazel-starters/rust.

Community

General discussions and announcements take place in the GitHub Discussions, but there are additional places where community members gather to discuss rules_rust.

Documentation

Please refer to the full documentation.