From 77c8382bb67bd334b3907c246ee064cda4b771ce Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Wed, 8 Dec 2021 18:42:00 +0100 Subject: gnu: mumps: Allow compilation with GCC 10. Following the suggestion at . * gnu/packages/maths.scm (mumps)[arguments]: In 'configure' phase, add '-fallow-argument-mismatch' to 'OPTF'. --- gnu/packages/maths.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index ea374a4f4c..b025ace4bb 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -3488,7 +3488,7 @@ (define-public mumps LIBOTHERS = -pthread CDEFS = -DAdd_ PIC = -fPIC -OPTF = -O2 -DALLOW_NON_INIT $(PIC) +OPTF = -O2 -DALLOW_NON_INIT -fallow-argument-mismatch $(PIC) OPTL = -O2 $(PIC) OPTC = -O2 $(PIC) INCS = $(INCSEQ) -- cgit v1.2.3