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 6bbec80 commit 37f046fCopy full SHA for 37f046f
src/bootstrap/native.rs
@@ -701,6 +701,15 @@ fn supported_sanitizers(
701
});
702
}
703
704
+ "aarch64-unknown-linux-gnu" => {
705
+ for s in &["asan", "lsan", "msan", "tsan"] {
706
+ result.push(SanitizerRuntime {
707
+ cmake_target: format!("clang_rt.{}-aarch64", s),
708
+ path: out_dir.join(&format!("build/lib/linux/libclang_rt.{}-aarch64.a", s)),
709
+ name: format!("librustc-{}_rt.{}.a", channel, s),
710
+ });
711
+ }
712
713
"x86_64-unknown-linux-gnu" => {
714
for s in &["asan", "lsan", "msan", "tsan"] {
715
result.push(SanitizerRuntime {
0 commit comments