summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2018-09-07 12:05:08 -0400
committerAndrew Gallant <jamslam@gmail.com>2018-09-07 12:06:04 -0400
commitb8f619d16ef82f2d9e77374f8db762318c0a2bf6 (patch)
treee18f7e573b2a755e471427972192caae8c528e76
parent83dff33326da6c417657c0f1f2458124f3bede10 (diff)
readme: a few clarifications
-rw-r--r--README.md9
1 files changed, 6 insertions, 3 deletions
diff --git a/README.md b/README.md
index c4c5b2e6..f5e449bf 100644
--- a/README.md
+++ b/README.md
@@ -135,8 +135,8 @@ or more of the following:
* You need a portable and ubiquitous tool. While ripgrep works on Windows,
macOS and Linux, it is not ubiquitous and it does not conform to any
standard such as POSIX. The best tool for this job is good old grep.
-* There still exists some other minor feature (or bug) found in another tool
- that isn't in ripgrep.
+* There still exists some other feature (or bug) not listed in this README that
+ you rely on that's in another tool that isn't in ripgrep.
* There is a performance edge case where ripgrep doesn't do well where another
tool does do well. (Please file a bug report!)
* ripgrep isn't possible to install on your machine or isn't available for your
@@ -409,7 +409,10 @@ $ rustup target add x86_64-unknown-linux-musl
$ cargo build --release --target x86_64-unknown-linux-musl
```
-Applying the `--features` flag from above works as expected.
+Applying the `--features` flag from above works as expected. If you want to
+build a static executable with MUSL and with PCRE2, then you will need to have
+`musl-gcc` installed, which might be in a separate package from the actual
+MUSL library, depending on your Linux distribution.
### Running tests