Module: Mesa Branch: main Commit: 7e74ee07e3a7aebc46cbd6d724b49790cb9f9c29 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=7e74ee07e3a7aebc46cbd6d724b49790cb9f9c29
Author: Karol Herbst <[email protected]> Date: Mon Dec 18 23:05:58 2023 +0100 rusticl: silence clippy::arc-with-non-send-sync for now Allows compilation with newer clippy Cc: mesa-stable Signed-off-by: Karol Herbst <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26764> --- src/gallium/frontends/rusticl/meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gallium/frontends/rusticl/meson.build b/src/gallium/frontends/rusticl/meson.build index 13958e5c175..9e7b7d0af5b 100644 --- a/src/gallium/frontends/rusticl/meson.build +++ b/src/gallium/frontends/rusticl/meson.build @@ -90,6 +90,8 @@ rusticl_args = [ '-Aclippy::redundant_field_names', '-Aclippy::too_many_arguments', '-Aclippy::type_complexity', + # Needs to be fixed + '-Aclippy::arc-with-non-send-sync', ] if with_platform_x11
