slackware-current/testing/source/mesa/amber/patches-revert/80817b6e344258ac9b955f824ebf9019a0fc1610.patch
Patrick J Volkerding eab537ba73 Sun Dec 22 03:52:10 UTC 2024
a/userspace-rcu-0.15.0-x86_64-1.txz:  Upgraded.
ap/nano-8.3-x86_64-1.txz:  Upgraded.
d/luajit-2.1.1734355927-x86_64-1.txz:  Upgraded.
x/mesa-24.2.8-x86_64-1.txz:  Upgraded.
  We'll use this more stable branch in the main tree for a while.
x/wayland-protocols-1.39-noarch-1.txz:  Upgraded.
xap/gnuplot-6.0.2-x86_64-1.txz:  Upgraded.
xfce/xfce4-screensaver-4.18.4-x86_64-1.txz:  Upgraded.
xfce/xfce4-session-4.20.0-x86_64-3.txz:  Rebuilt.
  startxfce4: call labwc with --session. Thanks to nikybiasionoru_82.
testing/packages/mesa-24.3.2-x86_64-1.txz:  Added.
  Moved Mesa 24.3 into /testing.
2024-12-22 06:09:38 +01:00

35 lines
1.2 KiB
Diff

From 80817b6e344258ac9b955f824ebf9019a0fc1610 Mon Sep 17 00:00:00 2001
From: Jesse Natalie <jenatali@microsoft.com>
Date: Wed, 18 Nov 2020 18:30:30 -0800
Subject: [PATCH] meson: Adjust Clover's required LLVM modules
When coming from CMake, all-targets doesn't exist, and Clover's
mechanism for finding Clang apparently requires the OpenMP frontend
lib but doesn't automatically pull it in.
Reviewed-by: Daniel Stone <daniels@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7680>
---
meson.build | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/meson.build b/meson.build
index 6d1607c35a3..f828eb80faa 100644
--- a/meson.build
+++ b/meson.build
@@ -1479,9 +1479,10 @@ if with_amd_vk or with_gallium_radeonsi or with_gallium_r600
endif
if with_gallium_opencl
llvm_modules += [
- 'all-targets', 'linker', 'coverage', 'instrumentation', 'ipo', 'irreader',
- 'lto', 'option', 'objcarcopts', 'profiledata',
+ 'linker', 'coverage', 'instrumentation', 'ipo', 'irreader',
+ 'lto', 'option', 'objcarcopts', 'profiledata'
]
+ llvm_optional_modules += ['frontendopenmp']
endif
if with_microsoft_clc
llvm_modules += ['target', 'linker', 'irreader', 'option', 'libdriver']
--
GitLab