mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
Add rust.lto=off
to bootstrap
This commit is contained in:
parent
5e37043d63
commit
2adf26fc72
@ -646,7 +646,8 @@ changelog-seen = 2
|
|||||||
|
|
||||||
# Select LTO mode that will be used for compiling rustc. By default, thin local LTO
|
# Select LTO mode that will be used for compiling rustc. By default, thin local LTO
|
||||||
# (LTO within a single crate) is used (like for any Rust crate). You can also select
|
# (LTO within a single crate) is used (like for any Rust crate). You can also select
|
||||||
# "thin" or "fat" to apply Thin/Fat LTO to the `rustc_driver` dylib.
|
# "thin" or "fat" to apply Thin/Fat LTO to the `rustc_driver` dylib, or "off" to disable
|
||||||
|
# LTO entirely.
|
||||||
#lto = "thin-local"
|
#lto = "thin-local"
|
||||||
|
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
|
@ -379,6 +379,9 @@ pub fn std_cargo(builder: &Builder<'_>, target: TargetSelection, stage: u32, car
|
|||||||
if stage >= 1 {
|
if stage >= 1 {
|
||||||
cargo.rustflag("-Cembed-bitcode=yes");
|
cargo.rustflag("-Cembed-bitcode=yes");
|
||||||
}
|
}
|
||||||
|
if builder.config.rust_lto == RustcLto::Off {
|
||||||
|
cargo.rustflag("-Clto=off");
|
||||||
|
}
|
||||||
|
|
||||||
// By default, rustc does not include unwind tables unless they are required
|
// By default, rustc does not include unwind tables unless they are required
|
||||||
// for a particular target. They are not required by RISC-V targets, but
|
// for a particular target. They are not required by RISC-V targets, but
|
||||||
@ -722,6 +725,13 @@ impl Step for Rustc {
|
|||||||
cargo.rustflag("-Cembed-bitcode=yes");
|
cargo.rustflag("-Cembed-bitcode=yes");
|
||||||
}
|
}
|
||||||
RustcLto::ThinLocal => { /* Do nothing, this is the default */ }
|
RustcLto::ThinLocal => { /* Do nothing, this is the default */ }
|
||||||
|
RustcLto::Off => {
|
||||||
|
cargo.rustflag("-Clto=off");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if builder.config.rust_lto == RustcLto::Off {
|
||||||
|
cargo.rustflag("-Clto=off");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -332,8 +332,9 @@ impl SplitDebuginfo {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// LTO mode used for compiling rustc itself.
|
/// LTO mode used for compiling rustc itself.
|
||||||
#[derive(Default, Clone)]
|
#[derive(Default, Clone, PartialEq)]
|
||||||
pub enum RustcLto {
|
pub enum RustcLto {
|
||||||
|
Off,
|
||||||
#[default]
|
#[default]
|
||||||
ThinLocal,
|
ThinLocal,
|
||||||
Thin,
|
Thin,
|
||||||
@ -348,6 +349,7 @@ impl std::str::FromStr for RustcLto {
|
|||||||
"thin-local" => Ok(RustcLto::ThinLocal),
|
"thin-local" => Ok(RustcLto::ThinLocal),
|
||||||
"thin" => Ok(RustcLto::Thin),
|
"thin" => Ok(RustcLto::Thin),
|
||||||
"fat" => Ok(RustcLto::Fat),
|
"fat" => Ok(RustcLto::Fat),
|
||||||
|
"off" => Ok(RustcLto::Off),
|
||||||
_ => Err(format!("Invalid value for rustc LTO: {}", s)),
|
_ => Err(format!("Invalid value for rustc LTO: {}", s)),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -12,6 +12,8 @@ debug-logging = true
|
|||||||
incremental = true
|
incremental = true
|
||||||
# Print backtrace on internal compiler errors during bootstrap
|
# Print backtrace on internal compiler errors during bootstrap
|
||||||
backtrace-on-ice = true
|
backtrace-on-ice = true
|
||||||
|
# Make the compiler and standard library faster to build, at the expense of a ~20% runtime slowdown.
|
||||||
|
lto = "off"
|
||||||
|
|
||||||
[llvm]
|
[llvm]
|
||||||
# Will download LLVM from CI if available on your platform.
|
# Will download LLVM from CI if available on your platform.
|
||||||
|
@ -8,6 +8,8 @@ bench-stage = 0
|
|||||||
[rust]
|
[rust]
|
||||||
# This greatly increases the speed of rebuilds, especially when there are only minor changes. However, it makes the initial build slightly slower.
|
# This greatly increases the speed of rebuilds, especially when there are only minor changes. However, it makes the initial build slightly slower.
|
||||||
incremental = true
|
incremental = true
|
||||||
|
# Make the compiler and standard library faster to build, at the expense of a ~20% runtime slowdown.
|
||||||
|
lto = "off"
|
||||||
|
|
||||||
[llvm]
|
[llvm]
|
||||||
# Will download LLVM from CI if available on your platform.
|
# Will download LLVM from CI if available on your platform.
|
||||||
|
Loading…
Reference in New Issue
Block a user