File tree 2 files changed +5
-2
lines changed
compiler/rustc_target/src/spec
src/tools/compiletest/src
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 {
4
4
let mut base = super :: apple_base:: opts ( "macos" ) ;
5
5
base. cpu = "apple-a12" . to_string ( ) ;
6
6
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 ;
8
10
9
11
base. pre_link_args . insert ( LinkerFlavor :: Gcc , vec ! [ "-arch" . to_string( ) , "arm64" . to_string( ) ] ) ;
10
12
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] = &[
96
96
] ;
97
97
98
98
pub const LSAN_SUPPORTED_TARGETS : & [ & str ] = & [
99
- "aarch64-apple-darwin" ,
99
+ // FIXME: currently broken, see #88132
100
+ // "aarch64-apple-darwin",
100
101
"aarch64-unknown-linux-gnu" ,
101
102
"x86_64-apple-darwin" ,
102
103
"x86_64-unknown-linux-gnu" ,
You can’t perform that action at this time.
0 commit comments