summaryrefslogtreecommitdiff
path: root/lib/make/known-architectures/bgl
diff options
context:
space:
mode:
authorschnetter <schnetter@17b73243-c579-4c4c-a9d2-2d5706c11dac>2006-01-24 15:08:03 +0000
committerschnetter <schnetter@17b73243-c579-4c4c-a9d2-2d5706c11dac>2006-01-24 15:08:03 +0000
commit52aef9f23cdf65315b08625c6915c3b4375c6e81 (patch)
tree79d43f21a4f0615e9e4e3c348e3f7084beae6a6b /lib/make/known-architectures/bgl
parent90cfb87534f2c1e29898ecae45a76cffc6a61d5f (diff)
When setting F77 to F90 while configuring, we recently also started
setting F77FLAGS to F90FLAGS. Since this change, compiling F77 code with the IBM Fortran compiler seems to be broken. The compiler does not recognise any more that F77 files are in fixed format. This problem has been extensively discussed on the developers' list in October 2005. This patch corrects that problem. Some known-architecture files produce makefile fragments that add, at run time, additional flags to F90FLAGS to set the source code form correctly (fixed or free format). These fragments need to add the same flags to F77FLAGS as well. This concerns the architectures AIX, BGL, and Darwin. git-svn-id: http://svn.cactuscode.org/flesh/trunk@4238 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/make/known-architectures/bgl')
-rw-r--r--lib/make/known-architectures/bgl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/make/known-architectures/bgl b/lib/make/known-architectures/bgl
index 2a31c834..d3589930 100644
--- a/lib/make/known-architectures/bgl
+++ b/lib/make/known-architectures/bgl
@@ -6,7 +6,7 @@
# @desc
# Known-architectures file for IBM Bluegene/L systems
# @enddesc
-# @version $Header: /mnt/data2/cvs2svn/cvs-repositories/Cactus/lib/make/known-architectures/bgl,v 1.2 2006-01-22 17:35:46 goodale Exp $
+# @version $Header: /mnt/data2/cvs2svn/cvs-repositories/Cactus/lib/make/known-architectures/bgl,v 1.3 2006-01-24 15:08:03 schnetter Exp $
# @@*/
if test "$CCTK_CONFIG_STAGE" = 'preferred-compilers' ; then
@@ -43,7 +43,7 @@ else
cross_compiling=yes
# Fortran compilers
: ${F90FLAGS="-qmaxmem=64000"}
- : ${F77FLAGS="-qmaxmem=64000 -qfixed"}
+ : ${F77FLAGS="-qmaxmem=64000"}
: ${F90_OPTIMISE_FLAGS='-O2 -qarch=440'}
: ${F77_OPTIMISE_FLAGS='-O2 -qarch=440'}
: ${F90_DEBUG_FLAGS='-g'}