[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/09: gnu: bowtie1: Enable building on more systems.
From: |
guix-commits |
Subject: |
07/09: gnu: bowtie1: Enable building on more systems. |
Date: |
Wed, 28 Feb 2024 05:26:58 -0500 (EST) |
efraim pushed a commit to branch master
in repository guix.
commit 9d882d2ef51804e3ddc31b09f62257a5809cb0ba
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed Feb 28 11:35:37 2024 +0200
gnu: bowtie1: Enable building on more systems.
* gnu/packages/bioinformatics.scm (bowtie1)[arguments]: Add make-flag to
disable searching for cpu features on non-x86 systems.
[supported-systems]: Enable all 64-bit supported systems.
Change-Id: Ice30df945ba154e39cd58a91847329e81038a3af
---
gnu/packages/bioinformatics.scm | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 1613961c64..85565f44bd 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -3775,14 +3775,17 @@ gapped, local, and paired-end alignment modes.")
`(#:tests? #f ; Tests need various perl modules
#:test-target "simple-test"
#:make-flags
- ,#~(list "CC=gcc" "all"
- (string-append "prefix=" #$output))
+ ,#~(append #$(if (not (target-x86?))
+ #~'("POPCNT_CAPABILITY=0")
+ #~'())
+ (list "CC=gcc" "all"
+ (string-append "prefix=" #$output)))
#:phases
(modify-phases %standard-phases
(delete 'configure))))
(inputs
(list python-wrapper tbb zlib))
- (supported-systems '("x86_64-linux"))
+ (supported-systems %64bit-supported-systems)
(home-page "https://bowtie-bio.sourceforge.net/index.shtml")
(synopsis "Fast aligner for short nucleotide sequence reads")
(description
- 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 <=
- 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, 2024/02/28