3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: looking-glass-client: Disable CPU-specific optimizations.

* gnu/packages/virtualization.scm (looking-glass-client)[source](modules,
snippet): New fields.
This commit is contained in:
Marius Bakke 2019-10-18 11:49:05 +02:00
parent a31b745756
commit 43beec19f4
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -817,7 +817,17 @@ Machine Protocol.")
(file-name (git-file-name name version))
(sha256
(base32
"02bq46ndmzq9cihazzn7xq1x7q5nzm7iw4l9lqzihxcxp9famkhw"))))
"02bq46ndmzq9cihazzn7xq1x7q5nzm7iw4l9lqzihxcxp9famkhw"))
(modules '((guix build utils)))
(snippet
'(begin
;; Do not create binaries optimized for the CPU of the build machine,
;; for reproducibility and compatibility. TODO: in the next version
;; of looking glass, this is exposed as a CMake configure option.
(substitute* "client/CMakeLists.txt"
(("-march=native")
""))
#t))))
(build-system cmake-build-system)
(inputs `(("fontconfig" ,fontconfig)
("glu" ,glu)