[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
- branch master updated (8c0282cf54 -> f29f80c194), guix-commits, 2024/02/28
- 01/09: gnu: python-graph-tool: Limit build to 1 core., guix-commits, 2024/02/28
- 05/09: gnu: gnucash: Update to 5.5., guix-commits, 2024/02/28
- 03/09: gnu: python-databind-json: Allow newer versions of typing-extensions., guix-commits, 2024/02/28
- 02/09: gnu: python-databind-core: Allow newer versions of typing-extensions., guix-commits, 2024/02/28
- 06/09: gnu: bowtie1: Update to 1.3.1., guix-commits, 2024/02/28
- 07/09: gnu: bowtie1: Enable building on more systems., guix-commits, 2024/02/28
- 04/09: gnu: gst-plugins-bad: Skip camerabin test on aarch64-linux., guix-commits, 2024/02/28
- 09/09: Merge branch 'rust-team', guix-commits, 2024/02/28
- 08/09: gnu: bowtie1: Enable cross-compiling.,
guix-commits <=