gnu: hisat: fix build on non-x86_64.
* gnu/packages/bioinformatics.scm (hisat): Add "POPCNT_CAPABILITY=0" to make-flags on architectures other than x86_64.
This commit is contained in:
parent
3ff733901a
commit
e58d01faf5
|
@ -197,8 +197,15 @@ Illumina, Roche 454, and the SOLiD platform.")
|
||||||
"1k381ydranqxp09yf2y7w1d0chz5d59vb6jchi89hbb0prq19lk5"))))
|
"1k381ydranqxp09yf2y7w1d0chz5d59vb6jchi89hbb0prq19lk5"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #f ;no check target
|
`(#:tests? #f ;no check target
|
||||||
#:make-flags '("allall")
|
#:make-flags '("allall"
|
||||||
|
;; Disable unsupported `popcnt' instructions on
|
||||||
|
;; architectures other than x86_64
|
||||||
|
,@(if (string-prefix? "x86_64"
|
||||||
|
(or (%current-target-system)
|
||||||
|
(%current-system)))
|
||||||
|
'()
|
||||||
|
'("POPCNT_CAPABILITY=0")))
|
||||||
#:phases
|
#:phases
|
||||||
(alist-replace
|
(alist-replace
|
||||||
'unpack
|
'unpack
|
||||||
|
|
Loading…
Reference in New Issue