summarylogtreecommitdiffstats
path: root/mingw-config.toml
diff options
context:
space:
mode:
authorpingplug2021-08-07 19:35:56 +0800
committerpingplug2021-08-07 19:35:56 +0800
commit18f5c60cb2c3736beb92895887179207d1c18a6b (patch)
treeb88e2524aef32a2f982114638a8944b9b92cf7db /mingw-config.toml
parentf2814c252dfd09271033996008036cf9f79fe876 (diff)
downloadaur-18f5c60cb2c3736beb92895887179207d1c18a6b.tar.gz
Updated to 1.54.0
Diffstat (limited to 'mingw-config.toml')
-rw-r--r--mingw-config.toml10
1 files changed, 8 insertions, 2 deletions
diff --git a/mingw-config.toml b/mingw-config.toml
index e1076a4c7697..470621a4fb56 100644
--- a/mingw-config.toml
+++ b/mingw-config.toml
@@ -372,8 +372,6 @@ debug = false
# This is mostly useful for tools; if you have changes to `compiler/` they will be ignored.
#
# You can set this to "if-unchanged" to only download if `compiler/` has not been modified.
-#
-# FIXME(#82739): currently, this also uses the downloaded compiler for stage0, but that causes unnecessary rebuilds.
#download-rustc = false
# Number of codegen units to use for each compiler invocation. A value of 0
@@ -565,6 +563,14 @@ test-compare-mode = false
# Use LLVM libunwind as the implementation for Rust's unwinder.
# Accepted values are 'in-tree' (formerly true), 'system' or 'no' (formerly false).
+# This option only applies for Linux and Fuchsia targets.
+# On Linux target, if crt-static is not enabled, 'no' means dynamic link to
+# `libgcc_s.so`, 'in-tree' means static link to the in-tree build of llvm libunwind
+# and 'system' means dynamic link to `libunwind.so`. If crt-static is enabled,
+# the behavior is depend on the libc. On musl target, 'no' and 'in-tree' both
+# means static link to the in-tree build of llvm libunwind, and 'system' means
+# static link to `libunwind.a` provided by system. Due to the limitation of glibc,
+# it must link to `libgcc_eh.a` to get a working output, and this option have no effect.
llvm-libunwind = 'no'
# Enable Windows Control Flow Guard checks in the standard library.