summaryrefslogtreecommitdiff
path: root/lib/make/known-architectures/irix
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-09-03 10:35:40 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-09-03 10:35:40 +0000
commitb31db818e35535d5f5c0f079560084bc07584325 (patch)
tree584b4e9c90600cf6e1b5a984ecbea5a4bd687382 /lib/make/known-architectures/irix
parent40611c2684a80c8eb0128b57d2d489512cb036ee (diff)
Add optimising options to optimise flags rather than fflags
git-svn-id: http://svn.cactuscode.org/flesh/trunk@1809 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/make/known-architectures/irix')
-rw-r--r--lib/make/known-architectures/irix8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/make/known-architectures/irix b/lib/make/known-architectures/irix
index 34f645e0..a8f8ab25 100644
--- a/lib/make/known-architectures/irix
+++ b/lib/make/known-architectures/irix
@@ -6,7 +6,7 @@
# @desc
#
# @enddesc
-# @version $Header: /mnt/data2/cvs2svn/cvs-repositories/Cactus/lib/make/known-architectures/irix,v 1.20 2000-07-29 23:50:53 goodale Exp $
+# @version $Header: /mnt/data2/cvs2svn/cvs-repositories/Cactus/lib/make/known-architectures/irix,v 1.21 2000-09-03 10:35:40 allen Exp $
# @@*/
if test "$CCTK_CONFIG_STAGE" = "preferred-compilers" ; then
@@ -94,12 +94,12 @@ else
case "$IRIX_BITS" in
64)
F90FLAGS="$F90FLAGS \
- -OPT:roundoff=3:IEEE_arithmetic=3:const_copy_limit=100000 \
-r10000 -TARG:proc=r10000 \
-64 -mips4"
F77FLAGS="$F90FLAGS"
- F90_OPTIMISE_FLAGS="-O3"
- F77_OPTIMISE_FLAGS="-O3"
+ F90_OPTIMISE_FLAGS="-O3 \
+ -OPT:roundoff=3:IEEE_arithmetic=3:const_copy_limit=100000"
+ F77_OPTIMISE_FLAGS="$F90_OPTIMISE_FLAGS"
F90_DEBUG_FLAGS="-g"
F77_DEBUG_FLAGS="-g"
;;