Rename tool-config to tool and add docs

This commit is contained in:
Stypox
2025-06-12 13:53:22 +02:00
parent 8dac423f82
commit 17f69bfda0
5 changed files with 20 additions and 17 deletions

View File

@@ -382,12 +382,13 @@
#]
# Specify build configuration specific for some tool, such as enabled features.
# This option has no effect on which tools are enabled: refer to the `tools` option for that.
#
# For example, to build Miri with tracing support, use `tool-config.miri.features = ["tracing"]`
# For example, to build Miri with tracing support, use `tool.miri.features = ["tracing"]`
#
# The default value for the `features` array is `[]`. However, please note that other flags in
# `bootstrap.toml` might influence the features enabled for some tools.
#tool-config.TOOL_NAME.features = [FEATURE1, FEATURE2]
#tool.TOOL_NAME.features = [FEATURE1, FEATURE2]
# Verbosity level: 0 == not verbose, 1 == verbose, 2 == very verbose, 3 == print environment variables on each rustc invocation
#verbose = 0