diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-06-07 03:08:31 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-06-07 18:36:02 +0200 |
commit | 7f5c1233b923192b820d3fc01c94a024947a6a0f (patch) | |
tree | 7c21a861a78321170f8f779136b31a33ba18bfb5 /gnu/packages/cpp.scm | |
parent | e8211364745ddecef19134bdd7c593401d24b732 (diff) | |
download | guix-7f5c1233b923192b820d3fc01c94a024947a6a0f.tar guix-7f5c1233b923192b820d3fc01c94a024947a6a0f.tar.gz |
gnu: xsimd: Update to 7.2.3.
* gnu/packages/cpp.scm (xsimd): Update to 7.2.3.
[arguments]: Add a configure flag required to build the tests.
Diffstat (limited to 'gnu/packages/cpp.scm')
-rw-r--r-- | gnu/packages/cpp.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 1adc2e5855..14a8fa87e7 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -130,7 +130,7 @@ combination of these streams.") (define-public xsimd (package (name "xsimd") - (version "4.1.2") + (version "7.2.3") (source (origin (method git-fetch) @@ -138,11 +138,12 @@ combination of these streams.") (url "https://github.com/QuantStack/xsimd.git") (commit version))) (sha256 - (base32 "0x86p2xjlaqyfissf30smj1szm4i3iw1x72qnj5dwvfgf7049xds")) + (base32 "1ny2qin1j4h35mljivh8z52kwdyjxf4yxlzb8j52ji91v2ccc88j")) (file-name (git-file-name name version)))) (build-system cmake-build-system) (arguments - `(#:test-target "xtest")) + `(#:configure-flags (list "-DBUILD_TESTS=ON") + #:test-target "xtest")) (native-inputs `(("googletest" ,googletest))) (home-page "https://github.com/QuantStack/xsimd") |