mirror of
git://slackware.nl/current.git
synced 2024-12-26 09:58:59 +01:00
eab537ba73
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.
42 lines
1.7 KiB
Diff
42 lines
1.7 KiB
Diff
From 72566fd92c27b39abe2057f6f23388ec40793dd9 Mon Sep 17 00:00:00 2001
|
|
From: Jesse Natalie <jenatali@microsoft.com>
|
|
Date: Wed, 18 Nov 2020 18:28:49 -0800
|
|
Subject: [PATCH] clover: Support LLVM coming from CMake instead of config-tool
|
|
|
|
Reviewed-by: Karol Herbst <kherbst@redhat.com>
|
|
Reviewed-by: Francisco Jerez <currojerez@riseup.net>
|
|
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7680>
|
|
---
|
|
src/gallium/frontends/clover/meson.build | 2 +-
|
|
src/gallium/targets/opencl/meson.build | 2 +-
|
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/src/gallium/frontends/clover/meson.build b/src/gallium/frontends/clover/meson.build
|
|
index 95a100d005c..b946eefff37 100644
|
|
--- a/src/gallium/frontends/clover/meson.build
|
|
+++ b/src/gallium/frontends/clover/meson.build
|
|
@@ -71,7 +71,7 @@ libclllvm = static_library(
|
|
clover_opencl_cpp_args,
|
|
clover_spirv_cpp_args,
|
|
'-DCLANG_RESOURCE_DIR="@0@"'.format(join_paths(
|
|
- dep_llvm.get_configtool_variable('libdir'), 'clang',
|
|
+ dep_llvm.get_variable(cmake : 'LLVM_LIBRARY_DIR', configtool: 'libdir'), 'clang',
|
|
dep_llvm.version(), 'include',
|
|
)),
|
|
],
|
|
diff --git a/src/gallium/targets/opencl/meson.build b/src/gallium/targets/opencl/meson.build
|
|
index dedd8ab7647..e758e4c12d9 100644
|
|
--- a/src/gallium/targets/opencl/meson.build
|
|
+++ b/src/gallium/targets/opencl/meson.build
|
|
@@ -29,7 +29,7 @@ if with_ld_version_script
|
|
opencl_link_deps += files('opencl.sym')
|
|
endif
|
|
|
|
-llvm_libdir = dep_llvm.get_configtool_variable('libdir')
|
|
+llvm_libdir = dep_llvm.get_variable(cmake : 'LLVM_LIBRARY_DIR', configtool: 'libdir')
|
|
opencl_libname = with_opencl_icd ? 'MesaOpenCL' : 'OpenCL'
|
|
|
|
polly_dep = null_dep
|
|
--
|
|
GitLab
|
|
|