diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-02-28 11:50:05 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-02-28 11:50:05 +0200 |
commit | c034088e37b51018d5bfeb88d822c559b38d51db (patch) | |
tree | e81f0c95128671471ee18dbe7531adaa74ff58f2 /gnu | |
parent | 9d882d2ef51804e3ddc31b09f62257a5809cb0ba (diff) |
gnu: bowtie1: Enable cross-compiling.
* gnu/packages/bioinformatics.scm (bowtie1)[arguments]: Adjust
make-flags to enable cross-compiling.
Change-Id: I6f5696e5ad6a1ea5b3f79e8dbbd162f0fe8d4905
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 85565f44bd..e7816eb1d1 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -3778,7 +3778,9 @@ gapped, local, and paired-end alignment modes.") ,#~(append #$(if (not (target-x86?)) #~'("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))) #:phases (modify-phases %standard-phases |