diff options
| author | Josh Stone <jistone@redhat.com> | 2018-04-13 16:52:54 -0700 |
|---|---|---|
| committer | Josh Stone <jistone@redhat.com> | 2018-04-13 16:52:54 -0700 |
| commit | cc2906cb26304301709557a88ac4a3334b88616b (patch) | |
| tree | dbf063997d29feaec4b3d635b3f2ca686ea881cd /config.toml.example | |
| parent | 7291829268ced93054aa74072b074799e0e563e3 (diff) | |
| download | rust-cc2906cb26304301709557a88ac4a3334b88616b.tar.gz rust-cc2906cb26304301709557a88ac4a3334b88616b.zip | |
rustbuild: allow building tools with debuginfo
Debugging information for the extended tools is currently disabled for concerns about the size. This patch adds `--enable-debuginfo-tools` to let one opt into having that debuginfo. This is useful for debugging the tools in distro packages. We always strip debuginfo into separate packages anyway, so the extra size is not a concern in regular use.
Diffstat (limited to 'config.toml.example')
| -rw-r--r-- | config.toml.example | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config.toml.example b/config.toml.example index 68bc7dfe720..bd18a604a9c 100644 --- a/config.toml.example +++ b/config.toml.example @@ -262,6 +262,10 @@ # standard library. #debuginfo-only-std = false +# Enable debuginfo for the extended tools: cargo, rls, rustfmt +# Adding debuginfo increases their sizes by a factor of 3-4. +#debuginfo-tools = false + # Whether or not jemalloc is built and enabled #use-jemalloc = true |
