mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-05-07 03:49:20 +00:00
mesa-pvr_23.2.1: import mesa patches from oe-core/master
Locally overlay verbatim copies of mesa 22.3.5 patches from oe-core/master, so we get whatever QoL patches from core relevant to the current release. Signed-off-by: Randolph Sapp <rs@ti.com> Signed-off-by: Ryan Eatmon <reatmon@ti.com>
This commit is contained in:
committed by
Ryan Eatmon
parent
817a950947
commit
c4bee16aaa
+40
@@ -0,0 +1,40 @@
|
|||||||
|
From 6d07f6aa7f92f40d78a2db645f16f0f3e7d3c2e8 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Khem Raj <raj.khem@gmail.com>
|
||||||
|
Date: Fri, 23 Jun 2023 01:20:38 -0700
|
||||||
|
Subject: [PATCH] gallium: Fix build with llvm 17
|
||||||
|
|
||||||
|
These headers are not available for C files in llvm 17+
|
||||||
|
and they seem to be not needed to compile after all with llvm 17
|
||||||
|
so add conditions to exclude them for llvm >= 17
|
||||||
|
|
||||||
|
Upstream-Status: Submitted [https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23827]
|
||||||
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||||
|
|
||||||
|
---
|
||||||
|
src/gallium/auxiliary/gallivm/lp_bld_init.c | 6 +++++-
|
||||||
|
1 file changed, 5 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_init.c b/src/gallium/auxiliary/gallivm/lp_bld_init.c
|
||||||
|
index cd2108f..b1a4d03 100644
|
||||||
|
--- a/src/gallium/auxiliary/gallivm/lp_bld_init.c
|
||||||
|
+++ b/src/gallium/auxiliary/gallivm/lp_bld_init.c
|
||||||
|
@@ -46,15 +46,19 @@
|
||||||
|
#if GALLIVM_USE_NEW_PASS == 1
|
||||||
|
#include <llvm-c/Transforms/PassBuilder.h>
|
||||||
|
#elif GALLIVM_HAVE_CORO == 1
|
||||||
|
+#if LLVM_VERSION_MAJOR < 17
|
||||||
|
#include <llvm-c/Transforms/Scalar.h>
|
||||||
|
-#if LLVM_VERSION_MAJOR >= 7
|
||||||
|
+#endif
|
||||||
|
+#if LLVM_VERSION_MAJOR >= 7 && LLVM_VERSION_MAJOR < 17
|
||||||
|
#include <llvm-c/Transforms/Utils.h>
|
||||||
|
#endif
|
||||||
|
#if LLVM_VERSION_MAJOR <= 8 && (DETECT_ARCH_AARCH64 || DETECT_ARCH_ARM || DETECT_ARCH_S390 || DETECT_ARCH_MIPS64)
|
||||||
|
#include <llvm-c/Transforms/IPO.h>
|
||||||
|
#endif
|
||||||
|
+#if LLVM_VERSION_MAJOR < 17
|
||||||
|
#include <llvm-c/Transforms/Coroutines.h>
|
||||||
|
#endif
|
||||||
|
+#endif
|
||||||
|
|
||||||
|
unsigned gallivm_perf = 0;
|
||||||
+42
@@ -0,0 +1,42 @@
|
|||||||
|
From 00d41cd5aa3f4b494dc276c9b4ccdc096310c91f Mon Sep 17 00:00:00 2001
|
||||||
|
From: Khem Raj <raj.khem@gmail.com>
|
||||||
|
Date: Thu, 28 Sep 2023 15:34:22 -0700
|
||||||
|
Subject: [PATCH] meson: use llvm-config instead of cmake to fix linking errors with meson 1.2.1
|
||||||
|
|
||||||
|
meson dependency auto dependency detection uses cmake and then
|
||||||
|
config-tool to process dependencies, in mesa the logic to detect llvm is
|
||||||
|
using auto detection which means if it finds cmake then it will try to
|
||||||
|
use cmake method. Cmake method works ok except a case when llvm-dev
|
||||||
|
package is installed on the build host then it generates its own
|
||||||
|
native.meson file and ignores OE supplied meson.native file which has
|
||||||
|
correct llvm-config tool specified which is pointing to llvm-config from
|
||||||
|
native sysroot. The generated meson.native file points to one found in
|
||||||
|
/usr/bin and there onwards detector finds native install of llvm and
|
||||||
|
configures that into building native mesa package.
|
||||||
|
|
||||||
|
Since cmake detector does not always work, disable it by default and use
|
||||||
|
config-tool which works in all cases. This is suggested in below issues
|
||||||
|
too
|
||||||
|
|
||||||
|
A similar issue is open in meson upstream [1] and mesa [2]
|
||||||
|
|
||||||
|
[1] https://github.com/mesonbuild/meson/issues/10483
|
||||||
|
[2] https://gitlab.freedesktop.org/mesa/mesa/-/issues/6738
|
||||||
|
|
||||||
|
Upstream-Status: Submitted [https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25438]
|
||||||
|
|
||||||
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||||
|
---
|
||||||
|
meson.build | 1 +
|
||||||
|
1 file changed, 1 insertion(+)
|
||||||
|
|
||||||
|
--- a/meson.build
|
||||||
|
+++ b/meson.build
|
||||||
|
@@ -1659,6 +1659,7 @@ with_llvm = false
|
||||||
|
if _llvm.allowed()
|
||||||
|
dep_llvm = dependency(
|
||||||
|
'llvm',
|
||||||
|
+ method : host_machine.system() == 'windows' ? 'auto' : 'config-tool',
|
||||||
|
version : _llvm_version,
|
||||||
|
modules : llvm_modules,
|
||||||
|
optional_modules : llvm_optional_modules,
|
||||||
+25
@@ -0,0 +1,25 @@
|
|||||||
|
From 3ef37c63f03ad6f2af407de350486fdd25e9132a Mon Sep 17 00:00:00 2001
|
||||||
|
From: Khem Raj <raj.khem@gmail.com>
|
||||||
|
Date: Mon, 13 Jan 2020 15:23:47 -0800
|
||||||
|
Subject: [PATCH] meson misdetects 64bit atomics on mips/clang
|
||||||
|
|
||||||
|
Upstream-Status: Pending
|
||||||
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||||
|
|
||||||
|
---
|
||||||
|
src/util/u_atomic.c | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/src/util/u_atomic.c b/src/util/u_atomic.c
|
||||||
|
index 5a5eab4..e499516 100644
|
||||||
|
--- a/src/util/u_atomic.c
|
||||||
|
+++ b/src/util/u_atomic.c
|
||||||
|
@@ -21,7 +21,7 @@
|
||||||
|
* IN THE SOFTWARE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
-#if defined(MISSING_64BIT_ATOMICS) && defined(HAVE_PTHREAD)
|
||||||
|
+#if !defined(__clang__) && defined(MISSING_64BIT_ATOMICS) && defined(HAVE_PTHREAD)
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <pthread.h>
|
||||||
+43
@@ -0,0 +1,43 @@
|
|||||||
|
From b251af67df5a6840d2e9cc06edae2c387f8778f1 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Alistair Francis <alistair@alistair23.me>
|
||||||
|
Date: Thu, 14 Nov 2019 13:04:49 -0800
|
||||||
|
Subject: [PATCH] meson.build: check for all linux host_os combinations
|
||||||
|
|
||||||
|
Make sure that we are also looking for our host_os combinations like
|
||||||
|
linux-musl etc. when assuming support for DRM/KMS.
|
||||||
|
|
||||||
|
Also delete a duplicate line.
|
||||||
|
|
||||||
|
Upstream-Status: Pending
|
||||||
|
|
||||||
|
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
|
||||||
|
Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
|
||||||
|
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
|
||||||
|
Signed-off-by: Alistair Francis <alistair@alistair23.me>
|
||||||
|
|
||||||
|
---
|
||||||
|
meson.build | 4 ++--
|
||||||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/meson.build b/meson.build
|
||||||
|
index 22385d8..15f48a6 100644
|
||||||
|
--- a/meson.build
|
||||||
|
+++ b/meson.build
|
||||||
|
@@ -121,7 +121,7 @@ with_any_opengl = with_opengl or with_gles1 or with_gles2
|
||||||
|
# Only build shared_glapi if at least one OpenGL API is enabled
|
||||||
|
with_shared_glapi = with_shared_glapi and with_any_opengl
|
||||||
|
|
||||||
|
-system_has_kms_drm = ['openbsd', 'netbsd', 'freebsd', 'gnu/kfreebsd', 'dragonfly', 'linux', 'sunos', 'android'].contains(host_machine.system())
|
||||||
|
+system_has_kms_drm = ['openbsd', 'netbsd', 'freebsd', 'gnu/kfreebsd', 'dragonfly', 'linux', 'sunos', 'android'].contains(host_machine.system()) or host_machine.system().startswith('linux')
|
||||||
|
|
||||||
|
gallium_drivers = get_option('gallium-drivers')
|
||||||
|
if gallium_drivers.contains('auto')
|
||||||
|
@@ -909,7 +909,7 @@ if cc.has_function('fmemopen')
|
||||||
|
endif
|
||||||
|
|
||||||
|
# TODO: this is very incomplete
|
||||||
|
-if ['linux', 'cygwin', 'gnu', 'freebsd', 'gnu/kfreebsd', 'haiku', 'android'].contains(host_machine.system())
|
||||||
|
+if ['linux', 'cygwin', 'gnu', 'freebsd', 'gnu/kfreebsd', 'haiku'].contains(host_machine.system()) or host_machine.system().startswith('linux')
|
||||||
|
pre_args += '-D_GNU_SOURCE'
|
||||||
|
elif host_machine.system() == 'sunos'
|
||||||
|
pre_args += '-D__EXTENSIONS__'
|
||||||
Reference in New Issue
Block a user