[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: mesa: Correct configure flag.
From: |
guix-commits |
Subject: |
01/01: gnu: mesa: Correct configure flag. |
Date: |
Thu, 25 Jul 2019 05:37:48 -0400 (EDT) |
rhelling pushed a commit to branch staging
in repository guix.
commit 688d8f22e205cd2a551a83103b07fe247705961b
Author: Rutger Helling <address@hidden>
Date: Thu Jul 25 11:36:16 2019 +0200
gnu: mesa: Correct configure flag.
* gnu/packages/gl.scm (mesa): Build the iris driver for the correct systems.
---
gnu/packages/gl.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm
index a7f09b3..4c3da2a 100644
--- a/gnu/packages/gl.scm
+++ b/gnu/packages/gl.scm
@@ -286,9 +286,9 @@ also known as DXTn or DXTC) for Mesa.")
'(,@(match (%current-system)
((or "armhf-linux" "aarch64-linux")
;; TODO: Fix svga driver for aarch64 and armhf.
-
'("-Dgallium-drivers=etnaviv,freedreno,iris,nouveau,r300,r600,swrast,tegra,v3d,vc4,virgl"))
+
'("-Dgallium-drivers=etnaviv,freedreno,nouveau,r300,r600,swrast,tegra,v3d,vc4,virgl"))
(_
-
'("-Dgallium-drivers=nouveau,r300,r600,radeonsi,svga,swrast,virgl")))
+
'("-Dgallium-drivers=iris,nouveau,r300,r600,radeonsi,svga,swrast,virgl")))
;; Enable various optional features. TODO: opencl requires libclc,
;; omx requires libomxil-bellagio
"-Dplatforms=x11,drm,surfaceless,wayland"