commit | 9f9da27fbdb0ba7d887f8d2521e082f12b009417 | [log] [tgz] |
---|---|---|
author | Tomasz Miąsko <tomaszmiasko@gmail.com> | Tue Apr 07 17:52:51 2020 +0200 |
committer | GitHub <noreply@github.com> | Tue Apr 07 08:52:51 2020 -0700 |
tree | fed7bfb167650d5a8775d2d3968542564ca5af74 | |
parent | 027e428197f3702599cfbb632883768175f49173 [diff] |
Fix sanitizer-common build with glibc 2.31 (#47) The type of ipc_perm mode field used by sanitizers is inconsistent with one found in glibc 2.31, resulting in a test failure during build. The sanitizers don't actually use the field directly and only care about the size and alignment of the whole structure. Disable the field check until the upgrade to LLVM 10 which addresses the issue in more comprehensive way. Co-authored-by: Tomasz Miąsko <tomasz.miasko@gmail.com>