]> git.lizzy.rs Git - rust.git/blob - config.toml.example
Rollup merge of #69008 - Aaron1011:fix/opaque-ty-parent, r=matthewjasper
[rust.git] / config.toml.example
1 # Sample TOML configuration file for building Rust.
2 #
3 # To configure rustbuild, copy this file to the directory from which you will be
4 # running the build, and name it config.toml.
5 #
6 # All options are commented out by default in this file, and they're commented
7 # out with their default values. The build system by default looks for
8 # `config.toml` in the current directory of a build for build configuration, but
9 # a custom configuration file can also be specified with `--config` to the build
10 # system.
11
12 # =============================================================================
13 # Tweaking how LLVM is compiled
14 # =============================================================================
15 [llvm]
16
17 # Indicates whether LLVM rebuild should be skipped when running bootstrap. If
18 # this is `false` then the compiler's LLVM will be rebuilt whenever the built
19 # version doesn't have the correct hash. If it is `true` then LLVM will never
20 # be rebuilt. The default value is `false`.
21 #skip-rebuild = false
22
23 # Indicates whether the LLVM build is a Release or Debug build
24 #optimize = true
25
26 # Indicates whether LLVM should be built with ThinLTO. Note that this will
27 # only succeed if you use clang, lld, llvm-ar, and llvm-ranlib in your C/C++
28 # toolchain (see the `cc`, `cxx`, `linker`, `ar`, and `ranlib` options below).
29 # More info at: https://clang.llvm.org/docs/ThinLTO.html#clang-bootstrap
30 #thin-lto = false
31
32 # Indicates whether an LLVM Release build should include debug info
33 #release-debuginfo = false
34
35 # Indicates whether the LLVM assertions are enabled or not
36 #assertions = false
37
38 # Indicates whether ccache is used when building LLVM
39 #ccache = false
40 # or alternatively ...
41 #ccache = "/path/to/ccache"
42
43 # If an external LLVM root is specified, we automatically check the version by
44 # default to make sure it's within the range that we're expecting, but setting
45 # this flag will indicate that this version check should not be done.
46 #version-check = true
47
48 # Link libstdc++ statically into the librustc_llvm instead of relying on a
49 # dynamic version to be available.
50 #static-libstdcpp = false
51
52 # Tell the LLVM build system to use Ninja instead of the platform default for
53 # the generated build system. This can sometimes be faster than make, for
54 # example.
55 #ninja = false
56
57 # LLVM targets to build support for.
58 # Note: this is NOT related to Rust compilation targets. However, as Rust is
59 # dependent on LLVM for code generation, turning targets off here WILL lead to
60 # the resulting rustc being unable to compile for the disabled architectures.
61 # Also worth pointing out is that, in case support for new targets are added to
62 # LLVM, enabling them here doesn't mean Rust is automatically gaining said
63 # support. You'll need to write a target specification at least, and most
64 # likely, teach rustc about the C ABI of the target. Get in touch with the
65 # Rust team and file an issue if you need assistance in porting!
66 #targets = "AArch64;ARM;Hexagon;MSP430;Mips;NVPTX;PowerPC;RISCV;Sparc;SystemZ;WebAssembly;X86"
67
68 # LLVM experimental targets to build support for. These targets are specified in
69 # the same format as above, but since these targets are experimental, they are
70 # not built by default and the experimental Rust compilation targets that depend
71 # on them will not work unless the user opts in to building them.
72 #experimental-targets = ""
73
74 # Cap the number of parallel linker invocations when compiling LLVM.
75 # This can be useful when building LLVM with debug info, which significantly
76 # increases the size of binaries and consequently the memory required by
77 # each linker process.
78 # If absent or 0, linker invocations are treated like any other job and
79 # controlled by rustbuild's -j parameter.
80 #link-jobs = 0
81
82 # When invoking `llvm-config` this configures whether the `--shared` argument is
83 # passed to prefer linking to shared libraries.
84 #link-shared = false
85
86 # When building llvm, this configures what is being appended to the version.
87 # If absent, we let the version as-is.
88 #version-suffix = "-rust"
89
90 # On MSVC you can compile LLVM with clang-cl, but the test suite doesn't pass
91 # with clang-cl, so this is special in that it only compiles LLVM with clang-cl
92 #clang-cl = '/path/to/clang-cl.exe'
93
94 # Pass extra compiler and linker flags to the LLVM CMake build.
95 #cflags = "-fextra-flag"
96 #cxxflags = "-fextra-flag"
97 #ldflags = "-Wl,extra-flag"
98
99 # Use libc++ when building LLVM instead of libstdc++. This is the default on
100 # platforms already use libc++ as the default C++ library, but this option
101 # allows you to use libc++ even on platforms when it's not. You need to ensure
102 # that your host compiler ships with libc++.
103 #use-libcxx = true
104
105 # The value specified here will be passed as `-DLLVM_USE_LINKER` to CMake.
106 #use-linker = "lld"
107
108 # Whether or not to specify `-DLLVM_TEMPORARILY_ALLOW_OLD_TOOLCHAIN=YES`
109 #allow-old-toolchain = false
110
111 # =============================================================================
112 # General build configuration options
113 # =============================================================================
114 [build]
115
116 # Build triple for the original snapshot compiler. This must be a compiler that
117 # nightlies are already produced for. The current platform must be able to run
118 # binaries of this build triple and the nightly will be used to bootstrap the
119 # first compiler.
120 #build = "x86_64-unknown-linux-gnu"    # defaults to your host platform
121
122 # In addition to the build triple, other triples to produce full compiler
123 # toolchains for. Each of these triples will be bootstrapped from the build
124 # triple and then will continue to bootstrap themselves. This platform must
125 # currently be able to run all of the triples provided here.
126 #host = ["x86_64-unknown-linux-gnu"]   # defaults to just the build triple
127
128 # In addition to all host triples, other triples to produce the standard library
129 # for. Each host triple will be used to produce a copy of the standard library
130 # for each target triple.
131 #target = ["x86_64-unknown-linux-gnu"] # defaults to just the build triple
132
133 # Instead of downloading the src/stage0.txt version of Cargo specified, use
134 # this Cargo binary instead to build all Rust code
135 #cargo = "/path/to/bin/cargo"
136
137 # Instead of downloading the src/stage0.txt version of the compiler
138 # specified, use this rustc binary instead as the stage0 snapshot compiler.
139 #rustc = "/path/to/bin/rustc"
140
141 # Instead of download the src/stage0.txt version of rustfmt specified,
142 # use this rustfmt binary instead as the stage0 snapshot rustfmt.
143 #rustfmt = "/path/to/bin/rustfmt"
144
145 # Flag to specify whether any documentation is built. If false, rustdoc and
146 # friends will still be compiled but they will not be used to generate any
147 # documentation.
148 #docs = true
149
150 # Indicate whether the compiler should be documented in addition to the standard
151 # library and facade crates.
152 #compiler-docs = false
153
154 # Indicate whether git submodules are managed and updated automatically.
155 #submodules = true
156
157 # Update git submodules only when the checked out commit in the submodules differs
158 # from what is committed in the main rustc repo.
159 #fast-submodules = true
160
161 # The path to (or name of) the GDB executable to use. This is only used for
162 # executing the debuginfo test suite.
163 #gdb = "gdb"
164
165 # The node.js executable to use. Note that this is only used for the emscripten
166 # target when running tests, otherwise this can be omitted.
167 #nodejs = "node"
168
169 # Python interpreter to use for various tasks throughout the build, notably
170 # rustdoc tests, the lldb python interpreter, and some dist bits and pieces.
171 # Note that Python 2 is currently required.
172 #
173 # Defaults to python2.7, then python2. If neither executable can be found, then
174 # it defaults to the Python interpreter used to execute x.py.
175 #python = "python2.7"
176
177 # Force Cargo to check that Cargo.lock describes the precise dependency
178 # set that all the Cargo.toml files create, instead of updating it.
179 #locked-deps = false
180
181 # Indicate whether the vendored sources are used for Rust dependencies or not
182 #vendor = false
183
184 # Typically the build system will build the Rust compiler twice. The second
185 # compiler, however, will simply use its own libraries to link against. If you
186 # would rather to perform a full bootstrap, compiling the compiler three times,
187 # then you can set this option to true. You shouldn't ever need to set this
188 # option to true.
189 #full-bootstrap = false
190
191 # Enable a build of the extended Rust tool set which is not only the compiler
192 # but also tools such as Cargo. This will also produce "combined installers"
193 # which are used to install Rust and Cargo together. This is disabled by
194 # default. The `tools` option (immediately below) specifies which tools should
195 # be built if `extended = true`.
196 #extended = false
197
198 # Installs chosen set of extended tools if `extended = true`. By default builds all.
199 # If chosen tool failed to build the installation fails. If `extended = false`, this
200 # option is ignored.
201 #tools = ["cargo", "rls", "clippy", "rustfmt", "analysis", "src"]
202
203 # Verbosity level: 0 == not verbose, 1 == verbose, 2 == very verbose
204 #verbose = 0
205
206 # Build the sanitizer runtimes
207 #sanitizers = false
208
209 # Build the profiler runtime
210 #profiler = false
211
212 # Indicates whether the native libraries linked into Cargo will be statically
213 # linked or not.
214 #cargo-native-static = false
215
216 # Run the build with low priority, by setting the process group's "nice" value
217 # to +10 on Unix platforms, and by using a "low priority" job object on Windows.
218 #low-priority = false
219
220 # Arguments passed to the `./configure` script, used during distcheck. You
221 # probably won't fill this in but rather it's filled in by the `./configure`
222 # script.
223 #configure-args = []
224
225 # Indicates that a local rebuild is occurring instead of a full bootstrap,
226 # essentially skipping stage0 as the local compiler is recompiling itself again.
227 #local-rebuild = false
228
229 # Print out how long each rustbuild step took (mostly intended for CI and
230 # tracking over time)
231 #print-step-timings = false
232
233 # =============================================================================
234 # General install configuration options
235 # =============================================================================
236 [install]
237
238 # Instead of installing to /usr/local, install to this path instead.
239 #prefix = "/usr/local"
240
241 # Where to install system configuration files
242 # If this is a relative path, it will get installed in `prefix` above
243 #sysconfdir = "/etc"
244
245 # Where to install documentation in `prefix` above
246 #docdir = "share/doc/rust"
247
248 # Where to install binaries in `prefix` above
249 #bindir = "bin"
250
251 # Where to install libraries in `prefix` above
252 #libdir = "lib"
253
254 # Where to install man pages in `prefix` above
255 #mandir = "share/man"
256
257 # Where to install data in `prefix` above (currently unused)
258 #datadir = "share"
259
260 # Where to install additional info in `prefix` above (currently unused)
261 #infodir = "share/info"
262
263 # Where to install local state (currently unused)
264 # If this is a relative path, it will get installed in `prefix` above
265 #localstatedir = "/var/lib"
266
267 # =============================================================================
268 # Options for compiling Rust code itself
269 # =============================================================================
270 [rust]
271
272 # Whether or not to optimize the compiler and standard library.
273 # WARNING: Building with optimize = false is NOT SUPPORTED. Due to bootstrapping,
274 # building without optimizations takes much longer than optimizing. Further, some platforms
275 # fail to build without this optimization (c.f. #65352).
276 #optimize = true
277
278 # Indicates that the build should be configured for debugging Rust. A
279 # `debug`-enabled compiler and standard library will be somewhat
280 # slower (due to e.g. checking of debug assertions) but should remain
281 # usable.
282 #
283 # Note: If this value is set to `true`, it will affect a number of
284 #       configuration options below as well, if they have been left
285 #       unconfigured in this file.
286 #
287 # Note: changes to the `debug` setting do *not* affect `optimize`
288 #       above. In theory, a "maximally debuggable" environment would
289 #       set `optimize` to `false` above to assist the introspection
290 #       facilities of debuggers like lldb and gdb. To recreate such an
291 #       environment, explicitly set `optimize` to `false` and `debug`
292 #       to `true`. In practice, everyone leaves `optimize` set to
293 #       `true`, because an unoptimized rustc with debugging
294 #       enabled becomes *unusably slow* (e.g. rust-lang/rust#24840
295 #       reported a 25x slowdown) and bootstrapping the supposed
296 #       "maximally debuggable" environment (notably libstd) takes
297 #       hours to build.
298 #
299 #debug = false
300
301 # Number of codegen units to use for each compiler invocation. A value of 0
302 # means "the number of cores on this machine", and 1+ is passed through to the
303 # compiler.
304 #codegen-units = 1
305
306 # Sets the number of codegen units to build the standard library with,
307 # regardless of what the codegen-unit setting for the rest of the compiler is.
308 #codegen-units-std = 1
309
310 # Whether or not debug assertions are enabled for the compiler and standard
311 # library.
312 #debug-assertions = false
313
314 # Debuginfo level for most of Rust code, corresponds to the `-C debuginfo=N` option of `rustc`.
315 # `0` - no debug info
316 # `1` - line tables only
317 # `2` - full debug info with variable and type information
318 # Can be overriden for specific subsets of Rust code (rustc, std or tools).
319 # Debuginfo for tests run with compiletest is not controlled by this option
320 # and needs to be enabled separately with `debuginfo-level-tests`.
321 #debuginfo-level = if debug { 2 } else { 0 }
322
323 # Debuginfo level for the compiler.
324 #debuginfo-level-rustc = debuginfo-level
325
326 # Debuginfo level for the standard library.
327 #debuginfo-level-std = debuginfo-level
328
329 # Debuginfo level for the tools.
330 #debuginfo-level-tools = debuginfo-level
331
332 # Debuginfo level for the test suites run with compiletest.
333 # FIXME(#61117): Some tests fail when this option is enabled.
334 #debuginfo-level-tests = 0
335
336 # Whether or not `panic!`s generate backtraces (RUST_BACKTRACE)
337 #backtrace = true
338
339 # Whether to always use incremental compilation when building rustc
340 #incremental = false
341
342 # Build a multi-threaded rustc
343 #parallel-compiler = false
344
345 # The default linker that will be hard-coded into the generated compiler for
346 # targets that don't specify linker explicitly in their target specifications.
347 # Note that this is not the linker used to link said compiler.
348 #default-linker = "cc"
349
350 # The "channel" for the Rust build to produce. The stable/beta channels only
351 # allow using stable features, whereas the nightly and dev channels allow using
352 # nightly features
353 #channel = "dev"
354
355 # The root location of the MUSL installation directory.
356 #musl-root = "..."
357
358 # By default the `rustc` executable is built with `-Wl,-rpath` flags on Unix
359 # platforms to ensure that the compiler is usable by default from the build
360 # directory (as it links to a number of dynamic libraries). This may not be
361 # desired in distributions, for example.
362 #rpath = true
363
364 # Emits extraneous output from tests to ensure that failures of the test
365 # harness are debuggable just from logfiles.
366 #verbose-tests = false
367
368 # Flag indicating whether tests are compiled with optimizations (the -O flag).
369 #optimize-tests = true
370
371 # Flag indicating whether codegen tests will be run or not. If you get an error
372 # saying that the FileCheck executable is missing, you may want to disable this.
373 # Also see the target's llvm-filecheck option.
374 #codegen-tests = true
375
376 # Flag indicating whether git info will be retrieved from .git automatically.
377 # Having the git information can cause a lot of rebuilds during development.
378 # Note: If this attribute is not explicitly set (e.g. if left commented out) it
379 # will default to true if channel = "dev", but will default to false otherwise.
380 #ignore-git = true
381
382 # When creating source tarballs whether or not to create a source tarball.
383 #dist-src = false
384
385 # After building or testing extended tools (e.g. clippy and rustfmt), append the
386 # result (broken, compiling, testing) into this JSON file.
387 #save-toolstates = "/path/to/toolstates.json"
388
389 # This is an array of the codegen backends that will be compiled for the rustc
390 # that's being compiled. The default is to only build the LLVM codegen backend,
391 # and currently the only standard option supported is `"llvm"`
392 #codegen-backends = ["llvm"]
393
394 # Indicates whether LLD will be compiled and made available in the sysroot for
395 # rustc to execute.
396 #lld = false
397
398 # Indicates whether LLD will be used to link Rust crates during bootstrap on
399 # supported platforms. The LLD from the bootstrap distribution will be used
400 # and not the LLD compiled during the bootstrap.
401 #
402 # LLD will not be used if we're cross linking or running tests.
403 #
404 # Explicitly setting the linker for a target will override this option.
405 #use-lld = false
406
407 # Indicates whether some LLVM tools, like llvm-objdump, will be made available in the
408 # sysroot.
409 #llvm-tools = false
410
411 # Indicates whether LLDB will be made available in the sysroot.
412 # This is only built if LLVM is also being built.
413 #lldb = false
414
415 # Whether to deny warnings in crates
416 #deny-warnings = true
417
418 # Print backtrace on internal compiler errors during bootstrap
419 #backtrace-on-ice = false
420
421 # Whether to verify generated LLVM IR
422 #verify-llvm-ir = false
423
424 # Compile the compiler with a non-default ThinLTO import limit. This import
425 # limit controls the maximum size of functions imported by ThinLTO. Decreasing
426 # will make code compile faster at the expense of lower runtime performance.
427 # If `incremental` is set to true above, the import limit will default to 10
428 # instead of LLVM's default of 100.
429 #thin-lto-import-instr-limit = 100
430
431 # Map all debuginfo paths for libstd and crates to `/rust/$sha/$crate/...`,
432 # generally only set for releases
433 #remap-debuginfo = false
434
435 # Link the compiler against `jemalloc`, where on Linux and OSX it should
436 # override the default allocator for rustc and LLVM.
437 #jemalloc = false
438
439 # Run tests in various test suites with the "nll compare mode" in addition to
440 # running the tests in normal mode. Largely only used on CI and during local
441 # development of NLL
442 #test-compare-mode = false
443
444 # Use LLVM libunwind as the implementation for Rust's unwinder.
445 #llvm-libunwind = false
446
447 # Enable Windows Control Flow Guard checks in the standard library.
448 # This only applies from stage 1 onwards, and only for Windows targets.
449 #control-flow-guard = false
450
451 # =============================================================================
452 # Options for specific targets
453 #
454 # Each of the following options is scoped to the specific target triple in
455 # question and is used for determining how to compile each target.
456 # =============================================================================
457 [target.x86_64-unknown-linux-gnu]
458
459 # C compiler to be used to compiler C code. Note that the
460 # default value is platform specific, and if not specified it may also depend on
461 # what platform is crossing to what platform.
462 #cc = "cc"
463
464 # C++ compiler to be used to compiler C++ code (e.g. LLVM and our LLVM shims).
465 # This is only used for host targets.
466 #cxx = "c++"
467
468 # Archiver to be used to assemble static libraries compiled from C/C++ code.
469 # Note: an absolute path should be used, otherwise LLVM build will break.
470 #ar = "ar"
471
472 # Ranlib to be used to assemble static libraries compiled from C/C++ code.
473 # Note: an absolute path should be used, otherwise LLVM build will break.
474 #ranlib = "ranlib"
475
476 # Linker to be used to link Rust code. Note that the
477 # default value is platform specific, and if not specified it may also depend on
478 # what platform is crossing to what platform.
479 # Setting this will override the `use-lld` option for Rust code.
480 #linker = "cc"
481
482 # Path to the `llvm-config` binary of the installation of a custom LLVM to link
483 # against. Note that if this is specified we don't compile LLVM at all for this
484 # target.
485 #llvm-config = "../path/to/llvm/root/bin/llvm-config"
486
487 # Normally the build system can find LLVM's FileCheck utility, but if
488 # not, you can specify an explicit file name for it.
489 #llvm-filecheck = "/path/to/FileCheck"
490
491 # If this target is for Android, this option will be required to specify where
492 # the NDK for the target lives. This is used to find the C compiler to link and
493 # build native code.
494 #android-ndk = "/path/to/ndk"
495
496 # Force static or dynamic linkage of the standard library for this target. If
497 # this target is a host for rustc, this will also affect the linkage of the
498 # compiler itself. This is useful for building rustc on targets that normally
499 # only use static libraries. If unset, the target's default linkage is used.
500 #crt-static = false
501
502 # The root location of the MUSL installation directory. The library directory
503 # will also need to contain libunwind.a for an unwinding implementation. Note
504 # that this option only makes sense for MUSL targets that produce statically
505 # linked binaries
506 #musl-root = "..."
507
508 # The root location of the `wasm32-wasi` sysroot.
509 #wasi-root = "..."
510
511 # Used in testing for configuring where the QEMU images are located, you
512 # probably don't want to use this.
513 #qemu-rootfs = "..."
514
515 # =============================================================================
516 # Distribution options
517 #
518 # These options are related to distribution, mostly for the Rust project itself.
519 # You probably won't need to concern yourself with any of these options
520 # =============================================================================
521 [dist]
522
523 # This is the folder of artifacts that the build system will sign. All files in
524 # this directory will be signed with the default gpg key using the system `gpg`
525 # binary. The `asc` and `sha256` files will all be output into the standard dist
526 # output folder (currently `build/dist`)
527 #
528 # This folder should be populated ahead of time before the build system is
529 # invoked.
530 #sign-folder = "path/to/folder/to/sign"
531
532 # This is a file which contains the password of the default gpg key. This will
533 # be passed to `gpg` down the road when signing all files in `sign-folder`
534 # above. This should be stored in plaintext.
535 #gpg-password-file = "path/to/gpg/password"
536
537 # The remote address that all artifacts will eventually be uploaded to. The
538 # build system generates manifests which will point to these urls, and for the
539 # manifests to be correct they'll have to have the right URLs encoded.
540 #
541 # Note that this address should not contain a trailing slash as file names will
542 # be appended to it.
543 #upload-addr = "https://example.com/folder"
544
545 # Whether to build a plain source tarball to upload
546 # We disable that on Windows not to override the one already uploaded on S3
547 # as the one built on Windows will contain backslashes in paths causing problems
548 # on linux
549 #src-tarball = true
550 #
551
552 # Whether to allow failures when building tools
553 #missing-tools = false