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

gnu: xxhash: Detect vector instructions at run time.

* gnu/packages/digest.scm (xxhash)[arguments]: Set DISPATCH=1 make flag
on x86.
This commit is contained in:
Tobias Geerinckx-Rice 2020-06-29 15:44:07 +02:00
parent 8db9300454
commit 1d25cfbaf4
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -21,7 +21,8 @@
#:use-module (guix packages)
#:use-module (guix git-download)
#:use-module (guix build-system gnu)
#:use-module (guix utils))
#:use-module (guix utils)
#:use-module (ice-9 match))
(define-public xxhash
(package
@ -40,6 +41,11 @@
(arguments
`(#:make-flags
(list ,(string-append "CC=" (cc-for-target))
,(match (or (%current-target-system)
(%current-system))
;; Detect vector instruction set at run time.
((or "i686-linux" "x86_64-linux") "DISPATCH=1")
(_ "DISPATCH=0"))
"XXH_FORCE_MEMORY_ACCESS=1" ; improved performance with GCC
(string-append "prefix=" (assoc-ref %outputs "out")))
#:phases