about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorkenta7777 <k.hasegw7@gmail.com>2018-11-06 14:49:01 +0900
committerWho? Me?! <mark-i-m@users.noreply.github.com>2018-11-07 08:59:17 -0600
commit548e029276723e22e8b2fc9f32d3ffacb430ec8b (patch)
treea696056d2282755a176f31291688376bb3bf32ca /src/doc/rustc-dev-guide
parent08e19e8c441df33abb98374057a142b22d26198d (diff)
downloadrust-548e029276723e22e8b2fc9f32d3ffacb430ec8b.tar.gz
rust-548e029276723e22e8b2fc9f32d3ffacb430ec8b.zip
revised a jemalloc statement in how-to-build-and-run.md
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/how-to-build-and-run.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/doc/rustc-dev-guide/src/how-to-build-and-run.md b/src/doc/rustc-dev-guide/src/how-to-build-and-run.md
index 62461d3efdb..863536a0611 100644
--- a/src/doc/rustc-dev-guide/src/how-to-build-and-run.md
+++ b/src/doc/rustc-dev-guide/src/how-to-build-and-run.md
@@ -42,9 +42,9 @@ debuginfo = true
 # Gives you line numbers for backtraces.
 debuginfo-lines = true
 
-# Using the system allocator (instead of jemalloc) means that tools
-# like valgrind and memcache work better.
-use-jemalloc = false
+# Link the compiler against `jemalloc`, where on Linux and OSX it should
+# override the default allocator for rustc and LLVM.
+jemalloc = false
 ```
 
 ### What is x.py?
@@ -335,4 +335,4 @@ everything up then you only need to run one command!
 
 The documentation for the rust components are found at [rustc doc].
 
-[rustc doc]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc/
\ No newline at end of file
+[rustc doc]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc/