Format and skip formatting for pin

This commit is contained in:
Michael Goulet 2025-05-12 15:26:28 +00:00 committed by Pietro Albini
parent ce6e29679c
commit 8ce7783c7c
No known key found for this signature in database
GPG key ID: 3E06ABE80BAAF19C
2 changed files with 3 additions and 2 deletions

View file

@ -1230,8 +1230,7 @@ fn supported_sanitizers(
.iter()
.map(move |c| SanitizerRuntime {
cmake_target: format!("clang_rt.{c}_{os}_dynamic"),
path: out_dir
.join(format!("build/lib/darwin/libclang_rt.{c}_{os}_dynamic.dylib")),
path: out_dir.join(format!("build/lib/darwin/libclang_rt.{c}_{os}_dynamic.dylib")),
name: format!("librustc-{channel}_rt.{c}.dylib"),
})
.collect()