Skip to content

Commit 130f033

Browse files
committed
enable -Zgcc-ld=lld by default for a crater run
1 parent f38c5c8 commit 130f033

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_session/src/options.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1253,7 +1253,7 @@ options! {
12531253
"whether each function should go in its own section"),
12541254
future_incompat_test: bool = (false, parse_bool, [UNTRACKED],
12551255
"forces all lints to be future incompatible, used for internal testing (default: no)"),
1256-
gcc_ld: Option<LdImpl> = (None, parse_gcc_ld, [TRACKED], "implementation of ld used by cc"),
1256+
gcc_ld: Option<LdImpl> = (Some(LdImpl::Lld), parse_gcc_ld, [TRACKED], "implementation of ld used by cc"),
12571257
graphviz_dark_mode: bool = (false, parse_bool, [UNTRACKED],
12581258
"use dark-themed colors in graphviz output (default: no)"),
12591259
graphviz_font: String = ("Courier, monospace".to_string(), parse_string, [UNTRACKED],

0 commit comments

Comments
 (0)