We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ca7658 commit 21b1b11Copy full SHA for 21b1b11
build_system/src/config.rs
@@ -426,9 +426,10 @@ impl ConfigInfo {
426
427
// Since we don't support ThinLTO, disable LTO completely when not trying to do LTO.
428
// TODO(antoyo): remove when we can handle ThinLTO.
429
- if !env.contains_key(&"FAT_LTO".to_string()) {
+ // TODO: remove:
430
+ /*if !env.contains_key(&"FAT_LTO".to_string()) {
431
rustflags.push("-Clto=off".to_string());
- }
432
+ }*/
433
// FIXME(antoyo): remove once the atomic shim is gone
434
if os_name == "Darwin" {
435
rustflags.extend_from_slice(&[
0 commit comments