From d8427f9c251cac0d6c35a26c0784319c95b208d8 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 22 Apr 2023 17:34:57 -0700 Subject: [PATCH] Link to Bazel and Buck2 websites --- book/src/build/bazel.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/book/src/build/bazel.md b/book/src/build/bazel.md index e37a658fe..8bc0cf66b 100644 --- a/book/src/build/bazel.md +++ b/book/src/build/bazel.md @@ -15,11 +15,14 @@ $ cxxbridge src/bridge.rs --header > path/to/bridge.rs.h $ cxxbridge src/bridge.rs > path/to/bridge.rs.cc ``` -The CXX repo maintains working Bazel `BUILD` and Buck `BUCK` targets for the -complete blobstore tutorial (chapter 3) for your reference, tested in CI. These -aren't meant to be directly what you use in your codebase, but serve as an +The CXX repo maintains working [Bazel] `BUILD` and [Buck2] `BUCK` targets for +the complete blobstore tutorial (chapter 3) for your reference, tested in CI. +These aren't meant to be directly what you use in your codebase, but serve as an illustration of one possible working pattern. +[Bazel]: https://bazel.build +[Buck2]: https://buck2.build + ```python # tools/bazel/rust_cxx_bridge.bzl