Module: Mesa Branch: staging/23.3 Commit: 0c6d7bcd0c639a016312ee1b4923cfd040a30189 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=0c6d7bcd0c639a016312ee1b4923cfd040a30189
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> (cherry picked from commit 7e74ee07e3a7aebc46cbd6d724b49790cb9f9c29) --- .pick_status.json | 2 +- src/gallium/frontends/rusticl/meson.build | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.pick_status.json b/.pick_status.json index 8429adc40e1..6ea6ab5751d 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -584,7 +584,7 @@ "description": "rusticl: silence clippy::arc-with-non-send-sync for now", "nominated": true, "nomination_type": 0, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": null, "notes": null diff --git a/src/gallium/frontends/rusticl/meson.build b/src/gallium/frontends/rusticl/meson.build index 92b23f548ff..279bd8d4d5a 100644 --- a/src/gallium/frontends/rusticl/meson.build +++ b/src/gallium/frontends/rusticl/meson.build @@ -89,6 +89,8 @@ rusticl_args = [ '-Aclippy::redundant_field_names', '-Aclippy::too_many_arguments', '-Aclippy::type_complexity', + # Needs to be fixed + '-Aclippy::arc-with-non-send-sync', ] rusticl_gen_args = [
