#!/hint/bash # shellcheck disable=2034 # # /etc/makepkg.conf.d/fortran.conf # ######################################################################### # FORTRAN LANGUAGE SUPPORT ######################################################################### # Flags used for the Fortran compiler, similar in spirit to CFLAGS. Read # linkman:gfortran[1] for more details on the available flags. FFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fno-plt \ -Wp,-D_FORTIFY_SOURCE=3 -fstack-clash-protection -fcf-protection \ -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer" FCFLAGS="$FFLAGS" # Additional compiler flags appended to `FFLAGS` and `FCFLAGS` for use in debugging. Usually # this would include: ``-g''. Read linkman:gfortran[1] for more details on the wide # variety of compiler flags available. DEBUG_FFLAGS="-g"