diff options
| author | Efraim Flashner <efraim@flashner.co.il> | 2026-03-23 11:34:44 +0200 |
|---|---|---|
| committer | Efraim Flashner <efraim@flashner.co.il> | 2026-03-23 13:58:44 +0200 |
| commit | 0bdb5c58ccf892c5ad384ddff7bed3aedd0f2940 (patch) | |
| tree | 44793b5970286197cca05881f1a33adf3d2a7f6f | |
| parent | 554d4a0850769c0cee166b59a5704dd27b8cf570 (diff) | |
gnu: skewer: Build with default gcc.
* gnu/packages/bioinformatics.scm (skewer)[arguments]: Add make-flag to
set the C++ standard used.
[native-inputs]: Remove gcc-10.
Change-Id: I96515ec527cc0e2639def0b9a0b76d2ccb1062b9
| -rw-r--r-- | gnu/packages/bioinformatics.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 41f893e817c..5761ce0080a 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -16396,14 +16396,14 @@ browser.") (arguments (list #:tests? #f + #:make-flags + #~(list "CXXFLAGS=-std=c++11 -c -O2") #:phases #~(modify-phases %standard-phases (delete 'configure) (replace 'install (lambda _ (install-file "skewer" (string-append #$output "/bin"))))))) - ;; XXX Fails to build with GCC 11. - (native-inputs (list gcc-10)) (home-page "https://github.com/relipmoc/skewer") (synopsis "Bit-masked k-difference matching") (description "Skewer implements the bit-masked k-difference matching |
