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 c341614 commit c6b872bCopy full SHA for c6b872b
build_system/src/config.rs
@@ -389,9 +389,10 @@ impl ConfigInfo {
389
390
// Since we don't support ThinLTO, disable LTO completely when not trying to do LTO.
391
// TODO(antoyo): remove when we can handle ThinLTO.
392
- if !env.contains_key(&"FAT_LTO".to_string()) {
+ // TODO: remove:
393
+ /*if !env.contains_key(&"FAT_LTO".to_string()) {
394
rustflags.push("-Clto=off".to_string());
- }
395
+ }*/
396
// FIXME(antoyo): remove once the atomic shim is gone
397
if os_name == "Darwin" {
398
rustflags.extend_from_slice(&[
0 commit comments