0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-02 09:46:52 -05:00

fuzz: also set MSAN_SYMBOLIZER_PATH

This commit is contained in:
fanquake 2024-01-26 13:56:04 +00:00
parent e3b68b3b83
commit cf937b2068
No known key found for this signature in database
GPG key ID: 2EEB9F5CC09526C1

View file

@ -24,6 +24,7 @@ def get_fuzz_env(*, target, source_dir):
'UBSAN_SYMBOLIZER_PATH':symbolizer,
"ASAN_OPTIONS": "detect_stack_use_after_return=1:check_initialization_order=1:strict_init_order=1",
'ASAN_SYMBOLIZER_PATH':symbolizer,
'MSAN_SYMBOLIZER_PATH':symbolizer,
}