Fix ambiguous native dependencies in `proc_macro`s and `staticlib`s (#1611)

`rustc` doesn't know how to deal with native dependencies that have the same name (specifying the full path to the native library does not currently work). `rules_rust` deals with this issue in `bin` and `cdylib` crate types by appending a hash to the different dependencies, so instead of `-lnative-dep -lnative-dep` the linking command line ends up being `-lnative-dep-{hash1} -lnative-dep-{hash2}`. This PR also applies the mechanism to `staticlib` and `proc-macro` crate types.
11 files changed
tree: 2b376eb0e7511c0ef60433ed8d26fcfdb4f683b3
  1. .bazelci/
  2. .github/
  3. bindgen/
  4. cargo/
  5. crate_universe/
  6. docs/
  7. examples/
  8. proto/
  9. rust/
  10. test/
  11. tools/
  12. util/
  13. wasm_bindgen/
  14. .bazelignore
  15. .bazelrc
  16. .clang-format
  17. .gitignore
  18. ARCHITECTURE.md
  19. AUTHORS
  20. BUILD.bazel
  21. CODEOWNERS
  22. COMPATIBILITY.md
  23. CONTRIBUTING.md
  24. CONTRIBUTORS
  25. LICENSE.txt
  26. README.md
  27. version.bzl
  28. WORKSPACE.bazel
README.md

Rust Rules

  • Postsubmit Build status

Overview

This repository provides rules for building Rust projects with Bazel.

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.