guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

14/22: gnu: mesa: Fix build on arm architectures.


From: guix-commits
Subject: 14/22: gnu: mesa: Fix build on arm architectures.
Date: Mon, 4 Nov 2024 21:14:11 -0500 (EST)

podiki pushed a commit to branch mesa-updates
in repository guix.

commit 6d82e8182c015fe69dbef4bfa808c268a36981ad
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Sep 10 12:05:01 2024 +0300

    gnu: mesa: Fix build on arm architectures.
    
    * gnu/packages/gl.scm (mesa)[inputs]: When building for an arm platform
    add python-pycparser.
    [arguments]: When building for aarch64 or armhf don't add kmsro as a
    gallium driver.
    * gnu/packages/python-xyz.scm (python-pycparser): Mark as a dependency
    for mesa.
    
    Change-Id: I61182157418a6667fcbb0d4280c959a708119b0d
---
 gnu/packages/gl.scm         | 10 +++++++---
 gnu/packages/python-xyz.scm |  1 +
 2 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm
index 1262d25137..c977c03949 100644
--- a/gnu/packages/gl.scm
+++ b/gnu/packages/gl.scm
@@ -348,6 +348,10 @@ also known as DXTn or DXTC) for Mesa.")
             python-pyyaml
             python-wrapper
             (@ (gnu packages base) which))
+      (if (target-arm?)
+          ;; Needed for etnaviv.
+          (list python-pycparser)
+          '())
       (if (%current-target-system)
           (list cmake-minimal-cross
                 pkg-config-for-build
@@ -362,11 +366,11 @@ also known as DXTn or DXTC) for Mesa.")
          #$@(cond
              ((target-aarch64?)
               ;; This includes more drivers than "auto": asahi, r300, r600
-              '("-Dgallium-drivers=asahi,etnaviv,freedreno,kmsro,lima,\
-nouveau,panfrost,r300,r600,svga,softpipe,llvmpipe,tegra,v3d,vc4,virgl,zink"))
+              '("-Dgallium-drivers=asahi,etnaviv,freedreno,lima,nouveau,\
+panfrost,r300,r600,svga,softpipe,llvmpipe,tegra,v3d,vc4,virgl,zink"))
              ((target-arm32?)
               ;; This includes more drivers than "auto": r300, r600
-              '("-Dgallium-drivers=etnaviv,freedreno,kmsro,lima,nouveau,\
+              '("-Dgallium-drivers=etnaviv,freedreno,lima,nouveau,\
 panfrost,r300,r600,svga,softpipe,llvmpipe,tegra,v3d,vc4,virgl,zink"))
              ((or (target-ppc64le?) (target-ppc32?) (target-riscv64?))
               ;; This include more drivers than "auto": svga
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 7ebe94716a..5083473c08 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -10987,6 +10987,7 @@ data, and scientific formats.")
 a multithreaded image-processing system with low memory needs.")
     (license license:expat)))
 
+;; WARNING: This package is a dependency of mesa.
 (define-public python-pycparser
   (package
     (name "python-pycparser")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]