Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 60beb1a

Browse files
committed
Don't use host linker for switch
1 parent e6aedf6 commit 60beb1a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/bootstrap/util.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,8 @@ pub fn use_host_linker(target: TargetSelection) -> bool {
298298
|| target.contains("nvptx")
299299
|| target.contains("fortanix")
300300
|| target.contains("fuchsia")
301-
|| target.contains("bpf"))
301+
|| target.contains("bpf")
302+
|| target.contains("switch"))
302303
}
303304

304305
pub fn is_valid_test_suite_arg<'a, P: AsRef<Path>>(

0 commit comments

Comments
 (0)