summaryrefslogtreecommitdiffstats
path: root/config/linux-gnulibc1
diff options
context:
space:
mode:
authorM. Scot Breitenfeld <brtnfld@hdfgroup.org>2017-08-01 20:33:43 (GMT)
committerM. Scot Breitenfeld <brtnfld@hdfgroup.org>2017-08-01 20:33:43 (GMT)
commit2d932366b27af21b9197c882b4bf09f7c7bc973e (patch)
treee8c0ee0b4ca971c0931e308c969ba0783a526cf9 /config/linux-gnulibc1
parent464926f2a3adf3ef1c1e3ae60105544f08ff1e51 (diff)
downloadhdf5-2d932366b27af21b9197c882b4bf09f7c7bc973e.zip
hdf5-2d932366b27af21b9197c882b4bf09f7c7bc973e.tar.gz
hdf5-2d932366b27af21b9197c882b4bf09f7c7bc973e.tar.bz2
added test for NAG compiler and use the FC_BASENAME for NAG detection, (HDFFV-10037)
Diffstat (limited to 'config/linux-gnulibc1')
-rw-r--r--config/linux-gnulibc165
1 files changed, 62 insertions, 3 deletions
diff --git a/config/linux-gnulibc1 b/config/linux-gnulibc1
index 1785e0e..7cd1a2a 100644
--- a/config/linux-gnulibc1
+++ b/config/linux-gnulibc1
@@ -84,7 +84,20 @@ else
$RM $tmpfile
fc_version_info=`$FC -V | grep Absoft`
;;
-
+ # The NAG compiler
+ nagfor*|nagftn*)
+ RM='rm -f'
+ tmpfile=/tmp/cmpver.$$
+ $FC -V >& $tmpfile
+ if test -s "$tmpfile"; then
+ if( grep -s 'NAG Fortran' $tmpfile > /dev/null) then
+ FC_BASENAME=nagfor
+ fi
+ fi
+ fc_version_info=`grep "NAG Fortran" $tmpfile`
+ echo "compiler '$FC' is $fc_version_info"
+ $RM $tmpfile
+ ;;
*)
;;
esac
@@ -108,10 +121,10 @@ case $FC_BASENAME in
#
f95)
# Set required flag for compiling C stubs
- H5_CFLAGS="$H5_CFLAGS"
+ H5_CFLAGS="$H5_CFLAGS"
F9XSUFFIXFLAG=""
-# We force compiler to use upper case for external names
+# We force compiler to use upper case for external names
# (just in case since this should be a default EIP)
H5_FCFLAGS="$H5_FCFLAGS"
FSEARCH_DIRS=""
@@ -136,6 +149,39 @@ case $FC_BASENAME in
f9x_flags_set=yes
;;
+#
+# NAG compiler
+#
+ nagfor)
+ # Set required flag for compiling C stubs
+ H5_CFLAGS="$H5_CFLAGS"
+
+ F9XSUFFIXFLAG=""
+# We force compiler to use upper case for external names
+# (just in case since this should be a default EIP)
+ H5_FCFLAGS="$H5_FCFLAGS"
+ FSEARCH_DIRS=""
+
+ # Production
+ PROD_FCFLAGS=
+
+ # Debug
+ DEBUG_FCFLAGS=
+
+ # Symbols
+ SYMBOLS_FCFLAGS="-g"
+ NO_SYMBOLS_FCFLAGS=""
+
+ # Profiling
+ PROFILE_FCFLAGS=""
+
+ # Optimization
+ HIGH_OPT_FCFLAGS="-O"
+ DEBUG_OPT_FCFLAGS=
+ NO_OPT_FCFLAGS=
+
+ f9x_flags_set=yes
+ ;;
esac
@@ -230,6 +276,19 @@ case $FC in
*pgf90*)
fc_version_info=`$FC $FCFLAGS $H5_FCFLAGS -V 2>&1 | grep 'pgf90'`
;;
+ *nagfor*|*nagftn*)
+ RM='rm -f'
+ tmpfile=/tmp/cmpver.$$
+ $FC -V >& $tmpfile
+ if test -s "$tmpfile"; then
+ if( grep -s 'NAG Fortran' $tmpfile > /dev/null) then
+ FC_BASENAME=nagfor
+ fi
+ fi
+ fc_version_info=`grep "NAG Fortran" $tmpfile`
+ $RM $tmpfile
+ echo "compiler '$FC' is $fc_version_info"
+ ;;
*)
echo "No match to get fc_version_info for $FC"