1
0
mirror of https://github.com/TREX-CoE/trexio.git synced 2025-03-19 15:26:33 +01:00

No need for -g in FCFLAGS

This commit is contained in:
q-posev 2025-01-02 23:03:58 +01:00
parent 0fd9779a1e
commit d804b14678

View File

@ -53,9 +53,9 @@ AS_IF([test "$ok" = "yes"],[
# Specific options required with some compilers
AS_CASE([$FC],
[*gfortran*], [FCFLAGS="$FCFLAGS -g -fPIC"],
[*flang*], [FCFLAGS="$FCFLAGS -g -fPIC"],
[*ifort*], [FCFLAGS="$FCFLAGS -g -fPIC"],
[*gfortran*], [FCFLAGS="$FCFLAGS -fPIC"],
[*flang*], [FCFLAGS="$FCFLAGS -fPIC"],
[*ifort*], [FCFLAGS="$FCFLAGS -fPIC"],
[])
])