[Scummvm-git-logs] scummvm-sites director-buildbot -> a54615dc5966ac8f22b38f887f6441328b36114c
rvanlaar
noreply at scummvm.org
Wed Feb 19 19:58:24 UTC 2025
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm-sites' repo located at https://github.com/scummvm/scummvm-sites .
Summary:
a54615dc59 DIRECTOR-BUILDBOT: Add ASAN unwind options for SDL
Commit: a54615dc5966ac8f22b38f887f6441328b36114c
https://github.com/scummvm/scummvm-sites/commit/a54615dc5966ac8f22b38f887f6441328b36114c
Author: Roland van Laar (roland at rolandvanlaar.nl)
Date: 2025-02-19T20:55:44+01:00
Commit Message:
DIRECTOR-BUILDBOT: Add ASAN unwind options for SDL
Reporting for SDL memory leaks is very terse by default.
Setting `fast_unwind_on_malloc=0` as an ASAN options helps.
For more information:
https://github.com/google/sanitizers/issues/1824
Changed paths:
director/build_factory.py
diff --git a/director/build_factory.py b/director/build_factory.py
index dcf46ea..211d784 100644
--- a/director/build_factory.py
+++ b/director/build_factory.py
@@ -12,7 +12,7 @@ default_step_kwargs: dict[str, Any] = {"logEnviron": False}
default_env: dict[str, str] = {
"SDL_VIDEODRIVER": "dummy",
"SDL_AUDIODRIVER": "dummy",
- "ASAN_OPTIONS": "detect_leaks=1:abort_on_error=1:disable_coredump=0:unmap_shadow_on_exit=1",
+ "ASAN_OPTIONS": "detect_leaks=1:abort_on_error=1:disable_coredump=0:unmap_shadow_on_exit=1,fast_unwind_on_malloc=0",
}
More information about the Scummvm-git-logs
mailing list