diff options
author | Andreas Enge <andreas@enge.fr> | 2025-04-02 18:29:38 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-04-02 18:29:50 +0200 |
commit | ad7b945bd39ecd5b845e561442badca27a503999 (patch) | |
tree | 2c21762e5273e26e6ddb51ee42ccbf3b556109ee /gnu | |
parent | 8fbebca8e1e8a2d574e5be4968dfb78d4e136b75 (diff) |
gnu: fflas-ffpack: Update to 2.5.0.wip-linbox
* gnu/packages/algebra.scm (fflas-ffpack): Update to 2.5.0.
[arguments]<#:configure-flags>: Disable "-march=native".
Change-Id: Ic3abebd14947ac08ea114eef001498342aba6df3
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/algebra.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm index a09c619e76..5a2a392c30 100644 --- a/gnu/packages/algebra.scm +++ b/gnu/packages/algebra.scm @@ -1552,16 +1552,16 @@ compound objects, such as vectors, matrices and univariate polynomials.") (define-public fflas-ffpack (package (name "fflas-ffpack") - (version "2.4.3") + (version "2.5.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/linbox-team/fflas-ffpack") - (commit version))) + (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 - "1ynbjd72qrwp0b4kpn0p5d7gddpvj8dlb5fwdxajr5pvkvi3if74")))) + "1iv8jpiv5k3gcmvnry1jyaw06y8li0gi464ri5a1aa9j6pd5qfqk")))) (build-system gnu-build-system) (native-inputs (list autoconf automake libtool pkg-config)) @@ -1571,7 +1571,8 @@ compound objects, such as vectors, matrices and univariate polynomials.") (list givaro)) ; required according to the .pc file (arguments `(#:configure-flags - (list (string-append "--with-blas-libs=" + (list "--without-archnative" + (string-append "--with-blas-libs=" (assoc-ref %build-inputs "openblas") "/lib/libopenblas.so")))) (synopsis "C++ library for linear algebra over finite fields") |