summaryrefslogtreecommitdiff
path: root/lib/make/known-architectures/aix
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-04-19 09:44:23 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-04-19 09:44:23 +0000
commit682b680a778f027b3e3e607020fcb6e38bcd6a10 (patch)
treef130423e82cd7ea86738a44a76673b983c4f3c13 /lib/make/known-architectures/aix
parentf011731f03fc369cdd8857214305e3b21b337bd7 (diff)
Now doesn't stop if MPI != NATIVE.
Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@1582 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/make/known-architectures/aix')
-rw-r--r--lib/make/known-architectures/aix8
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/make/known-architectures/aix b/lib/make/known-architectures/aix
index 4441e88d..a64bc1f4 100644
--- a/lib/make/known-architectures/aix
+++ b/lib/make/known-architectures/aix
@@ -59,11 +59,12 @@ else
# MPI stuff
if test -n "$MPI" ; then
+ NATIVE_MPI_LIBS="mpi"
+ NATIVE_MPI_LIB_DIRS="/usr/lpp/ppe.poe/lib"
+ NATIVE_MPI_INC_DIRS="/usr/lpp/ppe.poe/include"
+ if test "$MPI" = "NATIVE" ; then
case "$CC:$CXX" in
"xlc:xlC"|"cc:xlC")
- NATIVE_MPI_LIBS="mpi"
- NATIVE_MPI_LIB_DIRS="/usr/lpp/ppe.poe/lib"
- NATIVE_MPI_INC_DIRS="/usr/lpp/ppe.poe/include"
LD=mpCC
;;
*)
@@ -72,6 +73,7 @@ else
exit 1
;;
esac
+ fi
fi
fi