diff options
author | Rutger Helling <rhelling@mykolab.com> | 2017-12-29 19:42:45 +0100 |
---|---|---|
committer | Rutger Helling <rhelling@mykolab.com> | 2017-12-29 19:46:31 +0100 |
commit | abdb97f8ce5c3577873c0286afab0fa14fcca8fb (patch) | |
tree | 7df53e2e60bfa1e4cb2985a94e9ca43a6f5be96f /gnu/packages/gl.scm | |
parent | 8781c3d9fc05528089a4379a5199277ee8062974 (diff) |
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.
Diffstat (limited to 'gnu/packages/gl.scm')
-rw-r--r-- | gnu/packages/gl.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm index 53de580e3d..1dff039f57 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")) (_ '(""))) |