Skip to content
Snippets Groups Projects
Commit 7849e827 authored by Dominik Loidolt's avatar Dominik Loidolt
Browse files

Under AArch64 macOS LeakSanitizer is not working

parent 57098586
No related branches found
No related tags found
1 merge request!34Update cmp_tool to version v0.13
...@@ -48,7 +48,7 @@ test_env.set('ASAN_OPTIONS', ...@@ -48,7 +48,7 @@ test_env.set('ASAN_OPTIONS',
'use_sigaltstack=1', 'use_sigaltstack=1',
'dedup_token_length=3' 'dedup_token_length=3'
) )
if cc.has_argument('-fsanitize=leak') if cc.has_argument('-fsanitize=leak') and not (host_machine.system() == 'darwin' and host_machine.cpu_family() == 'aarch64' and cc.get_id() == 'clang')
test_env.append('ASAN_OPTIONS', 'detect_leaks=1') test_env.append('ASAN_OPTIONS', 'detect_leaks=1')
endif endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment