gnu: mesa: Correct configure flag.

* gnu/packages/gl.scm (mesa): Build the iris driver for the correct systems.
This commit is contained in:
Rutger Helling 2019-07-25 11:36:16 +02:00
parent 9c0170a6e9
commit 688d8f22e2
No known key found for this signature in database
GPG key ID: F3A727DB44FCCA36

View file

@ -286,9 +286,9 @@ (define-public 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"