diff options
author | Rob Clark <robdclark@chromium.org> | 2020-11-17 11:29:52 -0800 |
---|---|---|
committer | Marge Bot <eric+marge@anholt.net> | 2020-11-24 21:03:34 +0000 |
commit | 53f7d539cd93aff35f64a113a7f22fd91f1eb841 (patch) | |
tree | 26fed6258a0a9b9d4f0c6e3706c4ca62eaf6403b /src/meson.build | |
parent | 7f223a2329a7d392b8860f488b3797012cdd37fe (diff) | |
download | mesa-53f7d539cd93aff35f64a113a7f22fd91f1eb841.tar.gz mesa-53f7d539cd93aff35f64a113a7f22fd91f1eb841.tar.bz2 mesa-53f7d539cd93aff35f64a113a7f22fd91f1eb841.zip |
util: Add helgrind support for simple_mtx
Annoyingly mtypes.h pulls in simple_mtx, which means we end up needing
to sprinkle a lot of idep_mesautil around.
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/3773
Signed-off-by: Rob Clark <robdclark@chromium.org>
Reviewed-by: Kristian H. Kristensen <hoegsberg@google.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7644>
Diffstat (limited to 'src/meson.build')
-rw-r--r-- | src/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/meson.build b/src/meson.build index 7deb202207a..8547d16dac5 100644 --- a/src/meson.build +++ b/src/meson.build @@ -35,6 +35,7 @@ libglsl_util = static_library( 'mesa/program/dummy_errors.c', ), include_directories : [inc_include, inc_src, inc_mapi, inc_mesa, inc_gallium, inc_gallium_aux], + dependencies : dep_valgrind, gnu_symbol_visibility : 'hidden', build_by_default : false, ) |