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