[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#56760] [PATCH 1/6] gnu: trilinos-for-dealii-openmpi: Fix build.
From: |
Paul A. Patience |
Subject: |
[bug#56760] [PATCH 1/6] gnu: trilinos-for-dealii-openmpi: Fix build. |
Date: |
Mon, 25 Jul 2022 12:33:07 +0000 |
* gnu/packages/maths.scm (trilinos-for-dealii-openmpi)[native-inputs]:
Add gcc-7 to fix the failing build with newer versions of gcc.
---
gnu/packages/maths.scm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 458bffee61..948776e9d4 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -5153,7 +5153,10 @@ (define trilinos-for-dealii-openmpi
(base32 "0fnwlhzsh85qj38cq3igbs8nm1b2jdgr2z734sapmyyzsy21mkgp"))))
(build-system cmake-build-system)
(native-inputs
- `(("gfortran" ,gfortran)
+ `(;; The build fails with the current gcc.
+ ;; Use the version from when Trilinos was added.
+ ("gcc" ,gcc-7)
+ ("gfortran" ,gfortran)
;; Trilinos's repository contains several C-shell scripts, but adding
;; tcsh to the native inputs does not result in the check phase running
;; any more tests than without it (nor is tcsh required to build
--
2.37.1
- [bug#56760] [PATCH 0/6] dealii: Update to 9.4.0 and its Trilinos to 13.4.0., Paul A. Patience, 2022/07/25
- [bug#56760] [PATCH 1/6] gnu: trilinos-for-dealii-openmpi: Fix build.,
Paul A. Patience <=
- [bug#56760] [PATCH 2/6] gnu: dealii: Use G-expressions., Paul A. Patience, 2022/07/25
- [bug#56760] [PATCH 3/6] gnu: dealii: Update to 9.4.0., Paul A. Patience, 2022/07/25
- [bug#56760] [PATCH 5/6] gnu: trilinos-for-dealii-openmpi: Use G-expressions., Paul A. Patience, 2022/07/25
- [bug#56760] [PATCH 6/6] gnu: trilinos-for-dealii-openmpi: Update to 13.4.0., Paul A. Patience, 2022/07/25
- [bug#56760] [PATCH 4/6] gnu: trilinos-for-dealii-openmpi: Remove input labels., Paul A. Patience, 2022/07/25
- [bug#56760] [PATCH v2 0/6] dealii: Update to 9.4.0 and its Trilinos to 13.4.0., Paul A. Patience, 2022/07/25