guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: mesa: Add radeon vulkan driver support for i686-linux.


From: Rutger Helling
Subject: 01/01: gnu: mesa: Add radeon vulkan driver support for i686-linux.
Date: Fri, 29 Dec 2017 13:47:29 -0500 (EST)

rhelling pushed a commit to branch core-updates
in repository guix.

commit abdb97f8ce5c3577873c0286afab0fa14fcca8fb
Author: Rutger Helling <address@hidden>
Date:   Fri Dec 29 19:42:45 2017 +0100

    gnu: mesa: Add radeon vulkan driver support for i686-linux.
    
    * gnu/packages/gl.scm (mesa)[arguments]: Add "--with-vulkan-drivers" on
    i686-linux. Change Vulkan comments and TODO to reflect the changes.
---
 gnu/packages/gl.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm
index 53de580..1dff039 100644
--- a/gnu/packages/gl.scm
+++ b/gnu/packages/gl.scm
@@ -298,11 +298,13 @@ also known as DXTn or DXTC) for Mesa.")
          ;; are stuck at OpenGL 2.1 instead of OpenGL 3.0+.
          "--enable-texture-float"
 
-         ;; Enable Vulkan on x86-64.
-         ;; TODO: Fix building Mesa with Vulkan drivers enabled on i686-linux.
+         ;; Enable Vulkan on i686-linux and x86-64-linux.
          ,@(match (%current-system)
              ("x86_64-linux"
               '("--with-vulkan-drivers=intel,radeon"))
+             ;; TODO: Fix intel driver on i686-linux.
+             ("i686-linux"
+              '("--with-vulkan-drivers=radeon"))
              (_
               '("")))
 



reply via email to

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