Disable the leak sanitizer on Macos aarch64 for now.
It is currently broken, see #88132.
This commit is contained in:
parent
e7958d35ca
commit
59e37c829b
2 changed files with 5 additions and 2 deletions
|
@ -4,7 +4,9 @@ pub fn target() -> Target {
|
|||
let mut base = super::apple_base::opts("macos");
|
||||
base.cpu = "apple-a12".to_string();
|
||||
base.max_atomic_width = Some(128);
|
||||
base.supported_sanitizers = SanitizerSet::ADDRESS | SanitizerSet::LEAK | SanitizerSet::THREAD;
|
||||
|
||||
// FIXME: The leak sanitizer currently fails the tests, see #88132.
|
||||
base.supported_sanitizers = SanitizerSet::ADDRESS | SanitizerSet::THREAD;
|
||||
|
||||
base.pre_link_args.insert(LinkerFlavor::Gcc, vec!["-arch".to_string(), "arm64".to_string()]);
|
||||
base.link_env_remove.extend(super::apple_base::macos_link_env_remove());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue