From c860b6582c882589049d279d6355a363d9e7e827 Mon Sep 17 00:00:00 2001 From: Ruowen Qin Date: Sat, 24 Aug 2024 17:16:42 +0800 Subject: [PATCH] rex-config: update config based on the rust 1.80.1 updates Signed-off-by: Ruowen Qin --- rex-config.toml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/rex-config.toml b/rex-config.toml index 3d340cfb45055..59ebba491daf6 100644 --- a/rex-config.toml +++ b/rex-config.toml @@ -551,10 +551,10 @@ codegen-units-std = 1 #split-debuginfo = see target..split-debuginfo # Whether or not `panic!`s generate backtraces (RUST_BACKTRACE) -#backtrace = true +backtrace = true # Whether to always use incremental compilation when building rustc -#incremental = false +incremental = false # Build a multi-threaded rustc. This allows users to use parallel rustc # via the unstable option `-Z threads=n`. @@ -651,7 +651,7 @@ dist-src = false # Indicates whether LLD will be compiled and made available in the sysroot for # rustc to execute. -#lld = false +lld = false # Indicates whether LLD will be used to link Rust crates during bootstrap on # supported platforms. @@ -897,20 +897,17 @@ linker = "gcc" # on linux src-tarball = false -# Whether to allow failures when building tools -#missing-tools = false - # List of compression formats to use when generating dist tarballs. The list of # formats is provided to rust-installer, which must support all of them. # # This list must be non-empty. -#compression-formats = ["gz", "xz"] +compression-formats = ["xz"] # How much time should be spent compressing the tarballs. The better the # compression profile, the longer compression will take. # # Available options: fast, balanced, best -#compression-profile = "fast" +compression-profile = "balanced" # Copy the linker, DLLs, and various libraries from MinGW into the Rust toolchain. # Only applies when the host or target is pc-windows-gnu.