diff options
-rw-r--r-- | gnu/packages/algebra.scm | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm index 5d4869ace2..a4bf08d514 100644 --- a/gnu/packages/algebra.scm +++ b/gnu/packages/algebra.scm @@ -3,7 +3,7 @@ ;;; Copyright © 2013, 2015, 2017, 2018, 2021 Ludovic Courtès <[email protected]> ;;; Copyright © 2016-2023 Nicolas Goaziou <[email protected]> ;;; Copyright © 2014, 2018 Mark H Weaver <[email protected]> -;;; Copyright © 2016, 2018, 2019, 2021 Ricardo Wurmus <[email protected]> +;;; Copyright © 2016, 2018, 2019, 2021, 2023 Ricardo Wurmus <[email protected]> ;;; Copyright © 2017, 2020-2022 Efraim Flashner <[email protected]> ;;; Copyright © 2017–2021 Tobias Geerinckx-Rice <[email protected]> ;;; Copyright © 2017 Marius Bakke <[email protected]> @@ -1146,9 +1146,12 @@ features, and more.") (substitute-keyword-arguments (package-arguments eigen) ((#:phases phases) `(modify-phases ,phases - (delete 'disable-some-tests))))) - (native-inputs - (list gcc-7))))) + (delete 'disable-some-tests) + ;; This test cannot be compiled + (add-after 'unpack 'gcc-compatibility + (lambda _ + (substitute* "test/CMakeLists.txt" + (("ei_add_test\\(stddeque") "#"))))))))))) (define-public eigen-for-tensorflow-lite ;; This commit was taken from |