gnu: mesa: Use the "release" Meson build type.

* gnu/packages/gl.scm (mesa)[arguments]: Add <#:build-type>.
This commit is contained in:
Marius Bakke 2019-07-07 22:05:34 +02:00
parent f826ac4704
commit 6fe808f4c3
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -331,6 +331,11 @@ (define-public mesa
"-Dllvm=true")) ; default is x86/x86_64 only
(_
'("-Ddri-drivers=nouveau,r200,r100"))))
;; XXX: 'debugoptimized' causes LTO link failures on some drivers. The
;; documentation recommends using 'release' for performance anyway.
#:build-type "release"
#:modules ((ice-9 match)
(srfi srfi-1)
(guix build utils)