|
From: Taylor H. <tay...@gm...> - 2019-03-29 21:13:05
|
Hello! First off, thanks for creating such an awesome tool. I've been using valgrind on Termux (a terminal for Android.) There's a bunch of errors reported from the dynamic linker on Android, that I think can be suppressed. I've been using a generated suppression file that I include with .valgrindrc, but I'm wondering if this can be built into valgrind, as with the other suppression files that exist in the tarball distribution. Thanks in advance! |
|
From: John R. <jr...@bi...> - 2019-03-29 21:51:26
|
> There's a bunch of errors reported [by valgrind] from the dynamic linker on Android, that I think can be suppressed. For memory leaks, particularly if related to static initialization and/or are bounded in small total size, then probably they can be added to a list of errors to suppress by default on Android. Such as: a file ./Android-x.y.supp at the top level of the valgrind source. Enter a bug report (see http://valgrind.org/support/bug_reports.html) and attach the suppressions as a file to the bug report. For access errors, then start by submitting them to Android. There's a good chance that they are real errors that Android should fix. If Android declines, then file a _separate_ bug report to add the complaints to the valgrind suppressions. |