gnu: trilinos-for-dealii-openmpi: Fix build.
* gnu/packages/maths.scm (trilinos-for-dealii-openmpi)[native-inputs]: Add gcc-7 to fix the failing build with newer versions of gcc. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
parent
c6800aa31e
commit
bbf5e033d4
|
@ -5152,7 +5152,10 @@ revised simplex and the branch-and-bound methods.")
|
||||||
(base32 "0fnwlhzsh85qj38cq3igbs8nm1b2jdgr2z734sapmyyzsy21mkgp"))))
|
(base32 "0fnwlhzsh85qj38cq3igbs8nm1b2jdgr2z734sapmyyzsy21mkgp"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(native-inputs
|
(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
|
;; Trilinos's repository contains several C-shell scripts, but adding
|
||||||
;; tcsh to the native inputs does not result in the check phase running
|
;; 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
|
;; any more tests than without it (nor is tcsh required to build
|
||||||
|
|
Reference in New Issue