[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/08: gnu: mesa: Enable svga driver on all architectures.
From: |
guix-commits |
Subject: |
08/08: gnu: mesa: Enable svga driver on all architectures. |
Date: |
Sun, 7 Apr 2024 08:08:06 -0400 (EDT) |
efraim pushed a commit to branch mesa-updates
in repository guix.
commit b1b22cab723b199f5c65f5b3a86cd15053cc206f
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun Apr 7 14:24:37 2024 +0300
gnu: mesa: Enable svga driver on all architectures.
* gnu/packages/gl.scm (mesa)[arguments]: Adjust configure-flags so that
the svga gallium-driver is enabled on all architectures.
Change-Id: I0a604f1f8e4dac511c273149b95bf9b270e8e1fe
---
gnu/packages/gl.scm | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm
index e3008eeab5..544507fa3f 100644
--- a/gnu/packages/gl.scm
+++ b/gnu/packages/gl.scm
@@ -353,12 +353,11 @@ also known as DXTn or DXTC) for Mesa.")
#:configure-flags
#~(list
#$@(cond
- ;; TODO: Enable svga driver for non-Intel architectures.
((or (target-aarch64?) (target-arm32?))
'("-Dgallium-drivers=etnaviv,freedreno,kmsro,lima,nouveau,\
panfrost,r300,r600,svga,swrast,tegra,v3d,vc4,virgl,zink"))
((or (target-ppc64le?) (target-ppc32?) (target-riscv64?))
-
'("-Dgallium-drivers=nouveau,r300,r600,radeonsi,swrast,virgl,zink"))
+
'("-Dgallium-drivers=nouveau,r300,r600,radeonsi,svga,swrast,virgl,zink"))
(else
'("-Dgallium-drivers=crocus,iris,nouveau,r300,r600,radeonsi,\
svga,swrast,virgl,zink")))
- branch mesa-updates updated (4cb7978a19 -> b1b22cab72), guix-commits, 2024/04/07
- 07/08: gnu: glslang: Skip a test on powerpc-linux., guix-commits, 2024/04/07
- 02/08: gnu: mesa: Don't skip extra tests on aarch64-linux., guix-commits, 2024/04/07
- 01/08: gnu: glslang: Fix building on riscv64-linux., guix-commits, 2024/04/07
- 04/08: gnu: mesa: Adjust skipped tests on powerpc-linux., guix-commits, 2024/04/07
- 08/08: gnu: mesa: Enable svga driver on all architectures.,
guix-commits <=
- 03/08: gnu: mesa: Enable more gallium drivers., guix-commits, 2024/04/07
- 05/08: gnu: mesa: Enable all the video codecs., guix-commits, 2024/04/07
- 06/08: gnu: glslang: Give more information on test failures., guix-commits, 2024/04/07