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