From 6aada933ee919a3622b434699df1f4dfc06c93ee Mon Sep 17 00:00:00 2001 From: Lars Pastewka Date: Wed, 27 May 2020 23:51:21 +0200 Subject: [PATCH] DOC: Added documentation on which flags to use with gcc-10 --- setup.cfg.gnu | 1 + setup.cfg.gnu_omp | 1 + 2 files changed, 2 insertions(+) diff --git a/setup.cfg.gnu b/setup.cfg.gnu index b4d064f8..ebd31818 100644 --- a/setup.cfg.gnu +++ b/setup.cfg.gnu @@ -5,6 +5,7 @@ fcompiler=gfortran f90flags=-cpp -fPIC -ffree-form -ffree-line-length-none -x f95-cpp-input f77flags=-cpp -fPIC -x f77-cpp-input +# For gcc-10, add this to f77flags: -fallow-argument-mismatch [build_ext] libraries=gfortran diff --git a/setup.cfg.gnu_omp b/setup.cfg.gnu_omp index d9a08ffc..908b2b56 100644 --- a/setup.cfg.gnu_omp +++ b/setup.cfg.gnu_omp @@ -6,6 +6,7 @@ fcompiler=gfortran f90flags=-cpp -fPIC -ffree-form -ffree-line-length-none -x f95-cpp-input -fopenmp f77flags=-cpp -fPIC -x f77-cpp-input +# For gcc-10, add this to f77flags: -fallow-argument-mismatch [build_ext] libraries=gomp,gfortran