mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: bowtie1: Enable cross-compiling.
* gnu/packages/bioinformatics.scm (bowtie1)[arguments]: Adjust make-flags to enable cross-compiling. Change-Id: I6f5696e5ad6a1ea5b3f79e8dbbd162f0fe8d4905
This commit is contained in:
parent
9d882d2ef5
commit
c034088e37
1 changed files with 3 additions and 1 deletions
|
@ -3778,7 +3778,9 @@ (define-public bowtie1
|
||||||
,#~(append #$(if (not (target-x86?))
|
,#~(append #$(if (not (target-x86?))
|
||||||
#~'("POPCNT_CAPABILITY=0")
|
#~'("POPCNT_CAPABILITY=0")
|
||||||
#~'())
|
#~'())
|
||||||
(list "CC=gcc" "all"
|
(list (string-append "CC=" #$(cc-for-target))
|
||||||
|
(string-append "CXX=" #$(cxx-for-target))
|
||||||
|
"all"
|
||||||
(string-append "prefix=" #$output)))
|
(string-append "prefix=" #$output)))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
|
Loading…
Reference in a new issue