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 203c951 commit 4fad2e7Copy full SHA for 4fad2e7
tests/run-make/fat-then-thin-lto/rmake.rs
@@ -8,17 +8,8 @@
8
use run_make_support::{dynamic_lib_name, llvm_objdump, rustc};
9
10
fn main() {
11
- rustc()
12
- .input("lib.rs")
13
- .opt_level("3")
14
- .arg("-Clto=fat")
15
- .run();
16
17
- .input("main.rs")
18
- .panic("abort")
19
20
- .arg("-Clto=thin")
21
+ rustc().input("lib.rs").opt_level("3").arg("-Clto=fat").run();
+ rustc().input("main.rs").panic("abort").opt_level("3").arg("-Clto=thin").run();
22
23
llvm_objdump()
24
.input(dynamic_lib_name("main"))
0 commit comments