summaryrefslogtreecommitdiffstats
path: root/config/intel-fflags
diff options
context:
space:
mode:
Diffstat (limited to 'config/intel-fflags')
-rw-r--r--config/intel-fflags14
1 files changed, 7 insertions, 7 deletions
diff --git a/config/intel-fflags b/config/intel-fflags
index 0a65f0e..51ba6d0 100644
--- a/config/intel-fflags
+++ b/config/intel-fflags
@@ -12,11 +12,11 @@
# f9x_version: Version number: 8.0
#
if test X = "X$f9x_flags_set"; then
- f9x_version="`$F9X $FFLAGS -V 2>&1 |grep '^Intel'`"
+ f9x_version="`$FC $FCFLAGS -V 2>&1 |grep '^Intel'`"
if test X != "X$f9x_version"; then
f9x_vendor=ifort
f9x_version="`echo $f9x_version |sed 's/.*Version \([-a-z0-9\.\-]*\).*/\1/'`"
- echo "compiler '$F9X' is Intel $f9x_vendor-$f9x_version"
+ echo "compiler '$FC' is Intel $f9x_vendor-$f9x_version"
# Some version numbers
# Intel version numbers are of the form: "major.minor"
@@ -53,20 +53,20 @@ if test "X-ifort" = "X-$f9x_vendor"; then
#esac
# General
- F9X_BASENAME=ifort
+ FC_BASENAME=ifort
F9XSUFFIXFLAG=""
FSEARCH_DIRS=""
- FFLAGS="$FFLAGS"
+ FCFLAGS="$FCFLAGS"
# Production
- PROD_FFLAGS="-O3"
+ PROD_FCFLAGS="-O3"
# Debug
- DEBUG_FFLAGS="-g -check all"
+ DEBUG_FCFLAGS="-g -check all"
# Profile
# Use this for profiling with gprof
- PROFILE_FFLAGS="-g -p"
+ PROFILE_FCFLAGS="-g -p"
# Flags are set
f9x_flags_set=yes