# HG changeset patch # User Raphaël Gomès # Date 2020-04-16 15:31:29 # Node ID 8dbcd51381027d26088afef65b464223fdc9085c # Parent 97c10b157665ae01de72f759332cc1fac28178b8 rust: update README with new information about the Re2 path Differential Revision: https://phab.mercurial-scm.org/D8452 diff --git a/rust/README.rst b/rust/README.rst --- a/rust/README.rst +++ b/rust/README.rst @@ -54,9 +54,17 @@ However, the ``Re2`` path remains slight a better option for getting the most speed out of your Mercurial. If you want to use ``Re2``, you need to install ``Re2`` following Google's -guidelines: https://github.com/google/re2/wiki/Install -Then, use ``HG_RUST_FEATURES=with-re2`` when building ``hg`` to use the full -status code. +guidelines: https://github.com/google/re2/wiki/Install. +Then, use ``HG_RUST_FEATURES=with-re2`` and +``HG_RE2_PATH=system|`` when building ``hg`` to +signal the use of Re2. Using the local path instead of the "system" RE2 links +it statically. + +For example:: + + $ HG_RUST_FEATURES=with-re2 HG_RE2_PATH=system make PURE=--rust + $ # OR + $ HG_RUST_FEATURES=with-re2 HG_RE2_PATH=/path/to/re2 make PURE=--rust Developing Rust ===============