File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
compiler/rustc_target/src/spec
src/tools/compiletest/src Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,9 @@ pub fn target() -> Target {
44 let mut base = super :: apple_base:: opts ( "macos" ) ;
55 base. cpu = "apple-a12" . to_string ( ) ;
66 base. max_atomic_width = Some ( 128 ) ;
7- base. supported_sanitizers = SanitizerSet :: ADDRESS | SanitizerSet :: LEAK | SanitizerSet :: THREAD ;
7+
8+ // FIXME: The leak sanitizer currently fails the tests, see #88132.
9+ base. supported_sanitizers = SanitizerSet :: ADDRESS | SanitizerSet :: THREAD ;
810
911 base. pre_link_args . insert ( LinkerFlavor :: Gcc , vec ! [ "-arch" . to_string( ) , "arm64" . to_string( ) ] ) ;
1012 base. link_env_remove . extend ( super :: apple_base:: macos_link_env_remove ( ) ) ;
Original file line number Diff line number Diff line change @@ -96,7 +96,8 @@ pub const ASAN_SUPPORTED_TARGETS: &[&str] = &[
9696] ;
9797
9898pub const LSAN_SUPPORTED_TARGETS : & [ & str ] = & [
99- "aarch64-apple-darwin" ,
99+ // FIXME: currently broken, see #88132
100+ // "aarch64-apple-darwin",
100101 "aarch64-unknown-linux-gnu" ,
101102 "x86_64-apple-darwin" ,
102103 "x86_64-unknown-linux-gnu" ,
You can’t perform that action at this time.
0 commit comments