summaryrefslogtreecommitdiff
path: root/lib/make
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-04-15 13:47:05 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-04-15 13:47:05 +0000
commit120dafcce29ba5f898c37081aa9125dc9b3010e3 (patch)
tree242f0677042569fbd35614a67cb2de6ed5d1fb89 /lib/make
parentfbebcf7d2e8e6818e91da93b2252c1938c56f7c1 (diff)
Support for Lahey/Fujitsu F90 compiler for Linux
Supplied by Eric Schnetter git-svn-id: http://svn.cactuscode.org/flesh/trunk@1539 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/make')
-rw-r--r--lib/make/known-architectures/linux10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/make/known-architectures/linux b/lib/make/known-architectures/linux
index d601ce9b..dbd605c6 100644
--- a/lib/make/known-architectures/linux
+++ b/lib/make/known-architectures/linux
@@ -31,6 +31,8 @@ else
LINUX_F90_COMP=gnu77
elif test "`$F90 -? 2>&1 | grep -i absoft`" ; then
LINUX_F90_COMP=absoft77
+ elif test "`$F90 --version 2>&1 | grep -i lahey/fujitsu`" ; then
+ LINUX_F90_COMP=lahey
else
echo Unknown Linux f90 compiler.
echo Please add appropriate information to
@@ -129,6 +131,14 @@ else
fujitsu)
: ${LIBS="fj9i6 fj9e6 fj9f6"}
;;
+ lahey)
+ : ${F77_DEBUG_FLAGS="-g --chk"}
+ : ${F90_DEBUG_FLAGS="-g --chk"}
+ : ${F77_WARN_FLAGS="--warn"}
+ : ${F90_WARN_FLAGS="--warn"}
+ : ${F77_OPTIMISE_FLAGS="-O"}
+ : ${F90_OPTIMISE_FLAGS="-O"}
+ ;;
none)
: ${LIBS="m"}
;;