|
118 | 118 | # nightlies are already produced for. The current platform must be able to run |
119 | 119 | # binaries of this build triple and the nightly will be used to bootstrap the |
120 | 120 | # first compiler. |
121 | | -#build = "x86_64-unknown-linux-gnu" # defaults to your host platform |
| 121 | +# |
| 122 | +# Defaults to host platform |
| 123 | +#build = "x86_64-unknown-linux-gnu" |
122 | 124 |
|
123 | 125 | # In addition to the build triple, other triples to produce full compiler |
124 | 126 | # toolchains for. Each of these triples will be bootstrapped from the build |
125 | 127 | # triple and then will continue to bootstrap themselves. This platform must |
126 | 128 | # currently be able to run all of the triples provided here. |
127 | | -#host = ["x86_64-unknown-linux-gnu"] # defaults to just the build triple |
| 129 | +# |
| 130 | +# Defaults to just the build triple |
| 131 | +#host = ["x86_64-unknown-linux-gnu"] |
128 | 132 |
|
129 | 133 | # In addition to all host triples, other triples to produce the standard library |
130 | 134 | # for. Each host triple will be used to produce a copy of the standard library |
131 | 135 | # for each target triple. |
132 | | -#target = ["x86_64-unknown-linux-gnu"] # defaults to just the build triple |
| 136 | +# |
| 137 | +# Defaults to just the build triple |
| 138 | +#target = ["x86_64-unknown-linux-gnu"] |
133 | 139 |
|
134 | 140 | # Use this directory to store build artifacts. |
135 | 141 | # You can use "$ROOT" to indicate the root of the git repository. |
|
173 | 179 |
|
174 | 180 | # Python interpreter to use for various tasks throughout the build, notably |
175 | 181 | # rustdoc tests, the lldb python interpreter, and some dist bits and pieces. |
176 | | -#python = "python" # defaults to the Python interpreter used to execute x.py |
| 182 | +# |
| 183 | +# Defaults to the Python interpreter used to execute x.py |
| 184 | +#python = "python" |
177 | 185 |
|
178 | 186 | # Force Cargo to check that Cargo.lock describes the precise dependency |
179 | 187 | # set that all the Cargo.toml files create, instead of updating it. |
|
311 | 319 |
|
312 | 320 | # Whether or not debug assertions are enabled for the compiler and standard |
313 | 321 | # library. |
314 | | -#debug-assertions = false # defaults to rust.debug value |
| 322 | +# |
| 323 | +# Defaults to rust.debug value |
| 324 | +#debug-assertions = false |
315 | 325 |
|
316 | 326 | # Whether or not debug assertions are enabled for the standard library. |
317 | 327 | # Overrides the `debug-assertions` option, if defined. |
318 | | -#debug-assertions-std = false # defaults to rust.debug value |
| 328 | +# |
| 329 | +# Defaults to rust.debug value |
| 330 | +#debug-assertions-std = false |
319 | 331 |
|
320 | 332 | # Debuginfo level for most of Rust code, corresponds to the `-C debuginfo=N` option of `rustc`. |
321 | 333 | # `0` - no debug info |
|
324 | 336 | # Can be overridden for specific subsets of Rust code (rustc, std or tools). |
325 | 337 | # Debuginfo for tests run with compiletest is not controlled by this option |
326 | 338 | # and needs to be enabled separately with `debuginfo-level-tests`. |
327 | | -#debuginfo-level = 0 # defaults to 2 if debug is true |
| 339 | +# |
| 340 | +# Defaults to 2 if debug is true |
| 341 | +#debuginfo-level = 0 |
328 | 342 |
|
329 | 343 | # Debuginfo level for the compiler. |
330 | | -#debuginfo-level-rustc = 0 # defaults to rust.debuginfo-level value |
| 344 | +# |
| 345 | +# Defaults to rust.debuginfo-level value |
| 346 | +#debuginfo-level-rustc = 0 |
331 | 347 |
|
332 | 348 | # Debuginfo level for the standard library. |
333 | | -#debuginfo-level-std = 0 # defaults to rust.debuginfo-level value |
| 349 | +# |
| 350 | +# Defaults to rust.debuginfo-level value |
| 351 | +#debuginfo-level-std = 0 |
334 | 352 |
|
335 | 353 | # Debuginfo level for the tools. |
336 | | -#debuginfo-level-tools = 0 # defaults to rust.debuginfo-level value |
| 354 | +# |
| 355 | +# Defaults to rust.debuginfo-level value |
| 356 | +#debuginfo-level-tools = 0 |
337 | 357 |
|
338 | 358 | # Debuginfo level for the test suites run with compiletest. |
339 | 359 | # FIXME(#61117): Some tests fail when this option is enabled. |
|
0 commit comments