mirror of
git://slackware.nl/current.git
synced 2024-12-27 09:59:16 +01:00
6e6f0c6efb
a/tcsh-6.24.14-x86_64-1.txz: Upgraded. ap/sudo-1.9.16p2-x86_64-1.txz: Upgraded. n/netatalk-4.0.7-x86_64-2.txz: Rebuilt. Fixed config file handling. Thanks to marav. n/openldap-2.6.9-x86_64-1.txz: Upgraded. t/texlive-2024.240409-x86_64-3.txz: Rebuilt. Move files from /etc/fonts/conf.avail to /usr/share/fontconfig/fonts.avail. x/dejavu-fonts-ttf-2.37-noarch-7.txz: Rebuilt. Move files from /etc/fonts/conf.avail to /usr/share/fontconfig/fonts.avail. x/font-bh-ttf-1.0.4-noarch-2.txz: Rebuilt. Move files from /etc/fonts/conf.avail to /usr/share/fontconfig/fonts.avail. x/fontconfig-2.15.0-x86_64-1.txz: Upgraded. Thanks to Didier Spaier for the updated patches and meson build script! x/liberation-fonts-ttf-2.1.5-noarch-2.txz: Rebuilt. Move files from /etc/fonts/conf.avail to /usr/share/fontconfig/fonts.avail. x/noto-cjk-fonts-ttf-2.001-noarch-4.txz: Rebuilt. Move files from /etc/fonts/conf.avail to /usr/share/fontconfig/fonts.avail. x/ttf-indic-fonts-0.5.14-noarch-6.txz: Rebuilt. Move files from /etc/fonts/conf.avail to /usr/share/fontconfig/fonts.avail. x/ttf-tlwg-0.7.3-noarch-2.txz: Rebuilt. Move files from /etc/fonts/conf.avail to /usr/share/fontconfig/fonts.avail. x/wqy-zenhei-font-ttf-0.8.38_1-noarch-10.txz: Rebuilt. Move files from /etc/fonts/conf.avail to /usr/share/fontconfig/fonts.avail. xap/xlockmore-5.81-x86_64-1.txz: Upgraded. testing/packages/mesa-24.3.0-x86_64-1.txz: Added.
35 lines
1.2 KiB
Diff
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
|
|
|