diff options
author | Aleksey Kladov <[email protected]> | 2020-07-22 12:40:45 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-07-22 12:40:45 +0100 |
commit | deed44a472edaf11d35fa98c7e68a288f8dfe93f (patch) | |
tree | ff50a8ada66c03237c9a364be400107331547722 /docs | |
parent | 26932e0060b74525f74df5e31ae0c88997e5d667 (diff) |
Remove support for jemalloc
We only used it for measuring memory usage, but now we can use glibc's
allocator for that just fine
Diffstat (limited to 'docs')
-rw-r--r-- | docs/dev/README.md | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/docs/dev/README.md b/docs/dev/README.md index 3af01cd6b..2bb2f75bd 100644 --- a/docs/dev/README.md +++ b/docs/dev/README.md | |||
@@ -397,13 +397,7 @@ To log all communication between the server and the client, there are two choice | |||
397 | 397 | ||
398 | There are also two VS Code commands which might be of interest: | 398 | There are also two VS Code commands which might be of interest: |
399 | 399 | ||
400 | * `Rust Analyzer: Status` shows some memory-usage statistics. To take full | 400 | * `Rust Analyzer: Status` shows some memory-usage statistics. |
401 | advantage of it, you need to compile rust-analyzer with jemalloc support: | ||
402 | ``` | ||
403 | $ cargo install --path crates/rust-analyzer --force --features jemalloc | ||
404 | ``` | ||
405 | |||
406 | There's an alias for this: `cargo xtask install --server --jemalloc`. | ||
407 | 401 | ||
408 | * `Rust Analyzer: Syntax Tree` shows syntax tree of the current file/selection. | 402 | * `Rust Analyzer: Syntax Tree` shows syntax tree of the current file/selection. |
409 | 403 | ||