summarylogtreecommitdiffstats
path: root/mingw-config.toml
diff options
context:
space:
mode:
Diffstat (limited to 'mingw-config.toml')
-rw-r--r--mingw-config.toml17
1 files changed, 12 insertions, 5 deletions
diff --git a/mingw-config.toml b/mingw-config.toml
index e1ffac1cfaf2..1c52bced8dd8 100644
--- a/mingw-config.toml
+++ b/mingw-config.toml
@@ -76,6 +76,10 @@ link-jobs = 0
# passed to prefer linking to shared libraries.
link-shared = false
+# On MSVC you can compile LLVM with clang-cl, but the test suite doesn't pass
+# with clang-cl, so this is special in that it only compiles LLVM with clang-cl
+#clang-cl = '/path/to/clang-cl.exe'
+
# =============================================================================
# General build configuration options
# =============================================================================
@@ -100,11 +104,11 @@ target = ["x86_64-unknown-linux-gnu", "i686-pc-windows-gnu", "x86_64-pc-windows-
# Instead of downloading the src/stage0.txt version of Cargo specified, use
# this Cargo binary instead to build all Rust code
-#cargo = "/usr/bin/cargo"
+#cargo = "/path/to/bin/cargo"
# Instead of downloading the src/stage0.txt version of the compiler
# specified, use this rustc binary instead as the stage0 snapshot compiler.
-#rustc = "/usr/bin/rustc"
+#rustc = "/path/to/bin/rustc"
# Flag to specify whether any documentation is built. If false, rustdoc and
# friends will still be compiled but they will not be used to generate any
@@ -275,6 +279,9 @@ debug-jemalloc = false
# Whether or not `panic!`s generate backtraces (RUST_BACKTRACE)
backtrace = true
+# Whether to always use incremental compilation when building rustc
+incremental = false
+
# Build rustc with experimental parallelization
experimental-parallel-queries = false
@@ -294,9 +301,9 @@ channel = "stable"
# desired in distributions, for example.
rpath = true
-# Suppresses extraneous output from tests to ensure the output of the test
-# harness is relatively clean.
-quiet-tests = false
+# Emits extraneous output from tests to ensure that failures of the test
+# harness are debuggable just from logfiles.
+verbose-tests = false
# Flag indicating whether tests are compiled with optimizations (the -O flag) or
# with debuginfo (the -g flag)