|
73 | 73 | # controlled by rustbuild's -j parameter.
|
74 | 74 | #link-jobs = 0
|
75 | 75 |
|
| 76 | +# When invoking `llvm-config` this configures whether the `--shared` argument is |
| 77 | +# passed to prefer linking to shared libraries. |
| 78 | +#link-shared = false |
| 79 | + |
76 | 80 | # =============================================================================
|
77 | 81 | # General build configuration options
|
78 | 82 | # =============================================================================
|
|
166 | 170 | # to +10 on Unix platforms, and by using a "low priority" job object on Windows.
|
167 | 171 | #low-priority = false
|
168 | 172 |
|
| 173 | +# Arguments passed to the `./configure` script, used during distcheck. You |
| 174 | +# probably won't fill this in but rather it's filled in by the `./configure` |
| 175 | +# script. |
| 176 | +#configure-args = [] |
| 177 | + |
| 178 | +# Indicates that a local rebuild is ocurring instead of a full bootstrap, |
| 179 | +# essentially skipping stage0 as the local compiler is recompiling itself again. |
| 180 | +#local-rebuild = false |
| 181 | + |
169 | 182 | # =============================================================================
|
170 | 183 | # General install configuration options
|
171 | 184 | # =============================================================================
|
|
195 | 208 | # =============================================================================
|
196 | 209 | [rust]
|
197 | 210 |
|
| 211 | +# Indicates that the build should be optimized for debugging Rust. Note that |
| 212 | +# this is typically not what you want as it takes an incredibly large amount of |
| 213 | +# time to have a debug-mode rustc compile any code (notably libstd). If this |
| 214 | +# value is set to `true` it will affect a number of configuration options below |
| 215 | +# as well, if unconfigured. |
| 216 | +#debug = false |
| 217 | + |
198 | 218 | # Whether or not to optimize the compiler and standard library
|
199 | 219 | # Note: the slowness of the non optimized compiler compiling itself usually
|
200 | 220 | # outweighs the time gains in not doing optimizations, therefore a
|
|
249 | 269 | # desired in distributions, for example.
|
250 | 270 | #rpath = true
|
251 | 271 |
|
| 272 | +# Suppresses extraneous output from tests to ensure the output of the test |
| 273 | +# harness is relatively clean. |
| 274 | +#quiet-tests = false |
| 275 | + |
252 | 276 | # Flag indicating whether tests are compiled with optimizations (the -O flag) or
|
253 | 277 | # with debuginfo (the -g flag)
|
254 | 278 | #optimize-tests = true
|
|
261 | 285 | # Flag indicating whether git info will be retrieved from .git automatically.
|
262 | 286 | #ignore-git = false
|
263 | 287 |
|
| 288 | +# When creating source tarballs whether or not to create a source tarball. |
| 289 | +#dist-src = false |
| 290 | + |
264 | 291 | # =============================================================================
|
265 | 292 | # Options for specific targets
|
266 | 293 | #
|
|
304 | 331 | # linked binaries
|
305 | 332 | #musl-root = "..."
|
306 | 333 |
|
| 334 | +# Used in testing for configuring where the QEMU images are located, you |
| 335 | +# probably don't want to use this. |
| 336 | +#qemu-rootfs = "..." |
| 337 | + |
307 | 338 | # =============================================================================
|
308 | 339 | # Distribution options
|
309 | 340 | #
|
|
0 commit comments