We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c143a2 commit dc4e26dCopy full SHA for dc4e26d
src/lib.rs
@@ -493,10 +493,10 @@ impl WriteBackendMethods for GccCodegenBackend {
493
let bc_out = temp_dir.path().join("fakethinlto.o");
494
std::mem::forget(temp_dir);
495
496
- if module.lto_supported {
+ /*if module.lto_supported {
497
context.add_command_line_option("-flto=auto");
498
context.add_command_line_option("-flto-partition=one");
499
- }
+ }*/
500
context.compile_to_file(OutputKind::ObjectFile, bc_out.to_str().expect("path to str"));
501
502
ModuleBuffer::new(bc_out)
0 commit comments