Skip to content

Commit 40c3d35

Browse files
committed
Use MCP510
1 parent 48c1607 commit 40c3d35

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

src/bootstrap/src/utils/helpers.rs

+11-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use std::sync::OnceLock;
1515
use std::time::{Instant, SystemTime, UNIX_EPOCH};
1616

1717
use crate::core::builder::Builder;
18-
use crate::core::config::{Config, TargetSelection};
18+
use crate::core::config::{Config, LldMode, TargetSelection};
1919

2020
pub use crate::utils::dylib::{dylib_path, dylib_path_var};
2121

@@ -500,7 +500,16 @@ pub fn linker_flags(
500500
) -> Vec<String> {
501501
let mut args = vec![];
502502
if !builder.is_lld_direct_linker(target) && builder.config.lld_mode.is_used() {
503-
args.push(String::from("-Clink-arg=-fuse-ld=lld"));
503+
match builder.config.lld_mode {
504+
LldMode::External => {
505+
args.push("-Clinker-flavor=gnu-lld-cc".to_string());
506+
}
507+
LldMode::SelfContained => {
508+
args.push("-Clinker-flavor=gnu-lld-cc".to_string());
509+
args.push("-Clink-self-contained=+linker".to_string());
510+
}
511+
LldMode::Unused => {}
512+
}
504513

505514
if matches!(lld_threads, LldThreads::No) {
506515
args.push(format!("-Clink-arg=-Wl,{}", lld_flag_no_threads(target.is_msvc())));

0 commit comments

Comments
 (0)