guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

08/09: gnu: bowtie1: Enable cross-compiling.


From: guix-commits
Subject: 08/09: gnu: bowtie1: Enable cross-compiling.
Date: Wed, 28 Feb 2024 05:26:58 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit c034088e37b51018d5bfeb88d822c559b38d51db
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed Feb 28 11:50:05 2024 +0200

    gnu: bowtie1: Enable cross-compiling.
    
    * gnu/packages/bioinformatics.scm (bowtie1)[arguments]: Adjust
    make-flags to enable cross-compiling.
    
    Change-Id: I6f5696e5ad6a1ea5b3f79e8dbbd162f0fe8d4905
---
 gnu/packages/bioinformatics.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]